manifest.json 897 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "SingleFile Core",
  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": "Page processor used by SingleFile",
  9. "background": {
  10. "scripts": [
  11. "scripts/bg/index.js",
  12. "scripts/bg/wininfo.js",
  13. "scripts/bg/nio.js",
  14. "scripts/common/util.js",
  15. "scripts/common/docprocessor.js",
  16. "scripts/bg/bgcore.js",
  17. "scripts/bg/background.js"
  18. ]
  19. },
  20. "content_scripts": [ {
  21. "matches": [ "http://*/*", "https://*/*", "ftp://*/*" ],
  22. "js": [ "scripts/content/wininfo.js" ],
  23. "run_at" : "document_start",
  24. "all_frames" : true
  25. } ],
  26. "web_accessible_resources": [
  27. "resources/icon_16.png"
  28. ],
  29. "permissions": [ "tabs", "http://*/*", "https://*/*", "unlimitedStorage" ],
  30. "minimum_chrome_version" : "7",
  31. "manifest_version": 2
  32. }