manifest.json 567 B

123456789101112131415161718
  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.2.20",
  8. "description": "Page processor used by SingleFile",
  9. "background_page" : "pages/background.html",
  10. "content_scripts": [ {
  11. "matches": [ "http://*/*", "https://*/*", "ftp://*/*" ],
  12. "js": [ "scripts/content/wininfo.js" ],
  13. "run_at" : "document_end",
  14. "all_frames" : true
  15. } ],
  16. "permissions": [ "tabs", "http://*/*", "https://*/*", "unlimitedStorage" ],
  17. "minimum_chrome_version" : "7"
  18. }