manifest.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "SingleFile",
  3. "icons": {
  4. "16": "resources/icon_16.png",
  5. "48": "resources/icon_48.png",
  6. "128": "resources/icon_128.png" },
  7. "version": "0.3.6",
  8. "description": "Archive a complete page into a single HTML file",
  9. "background" : {
  10. "scripts": [
  11. "scripts/bg/index.js",
  12. "scripts/bg/ui.js",
  13. "scripts/bg/config.js",
  14. "scripts/bg/background.js"
  15. ]
  16. },
  17. "options_page": "pages/options.html",
  18. "browser_action": {
  19. "default_icon": "resources/icon_19.png",
  20. "default_title": "Process this page with SingleFile"
  21. },
  22. "content_scripts" : [ {
  23. "matches" : [ "http://*/*", "https://*/*" ],
  24. "js" : [ "scripts/content/content.js" ],
  25. "run_at" : "document_start",
  26. "all_frames" : true
  27. } ],
  28. "web_accessible_resources": [
  29. "pages/banner.html",
  30. "pages/banner.css",
  31. "scripts/content/banner.js",
  32. "pages/notification.html",
  33. "pages/notification.css",
  34. "scripts/bg/notification.js"
  35. ],
  36. "permissions": [ "tabs", "notifications", "contextMenus" ],
  37. "minimum_chrome_version" : "7",
  38. "manifest_version": 2
  39. }