1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "manifest_version": 2,
- "name": "Browsh",
- "version": "BROWSH_VERSION",
- "description": "Renders the browser as realtime, interactive, TTY-compatible text",
- "icons": {
- "48": "assets/icons/browsh-48.png",
- "96": "assets/icons/browsh-96.png"
- },
- "background": {
- "scripts": ["background.js"]
- },
- "content_scripts": [
- {
- "matches": ["*://*/*"],
- "js": ["content.js"],
- "css": ["assets/styles.css"],
- "run_at": "document_start"
- }
- ],
- "web_accessible_resources": [
- "assets/BlockCharMono.ttf",
- "assets/BlankMono.ttf"
- ],
- "permissions": [
- "<all_urls>",
- "webRequest",
- "webRequestBlocking",
- "tabs"
- ]
- }
|