manifest.json 736 B

1234567891011121314151617181920212223
  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.2.31",
  8. "description": "SingleFile helps you to archive a complete page into a single HTML file",
  9. "background_page" : "pages/background.html",
  10. "options_page": "pages/options.html",
  11. "browser_action": {
  12. "default_icon": "resources/icon_19.png",
  13. "default_title": "Process this page with SingleFile"
  14. },
  15. "content_scripts" : [ {
  16. "matches" : [ "http://*/*", "https://*/*" ],
  17. "js" : [ "scripts/content/content.js" ],
  18. "run_at" : "document_start",
  19. "all_frames" : true
  20. } ],
  21. "permissions": [ "tabs", "notifications", "contextMenus" ],
  22. "minimum_chrome_version" : "7"
  23. }