| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "SingleFile",
- "icons": {
- "16": "resources/icon_16.png",
- "48": "resources/icon_48.png",
- "128": "resources/icon_128.png" },
- "version": "0.3.12",
- "description": "Archive a complete page into a single HTML file",
- "background" : {
- "scripts": [
- "scripts/bg/index.js",
- "scripts/bg/ui.js",
- "scripts/bg/config.js",
- "scripts/bg/background.js"
- ]
- },
- "options_page": "pages/options.html",
- "browser_action": {
- "default_icon": "resources/icon_19.png",
- "default_title": "Process this page with SingleFile"
- },
- "content_scripts" : [ {
- "matches" : [ "http://*/*", "https://*/*" ],
- "js" : [ "scripts/content/content.js" ],
- "run_at" : "document_start",
- "all_frames" : true
- } ],
- "web_accessible_resources": [
- "pages/banner.html",
- "pages/banner.css",
- "scripts/content/banner.js"
- ],
- "permissions": [ "tabs", "notifications", "contextMenus" ],
- "minimum_chrome_version" : "7",
- "manifest_version": 2
- }
|