| 1 | { |
| 2 | "background_page": "background.html", |
| 3 | "browser_action": { |
| 4 | "default_icon": "icon.png", |
| 5 | "popup": "popup.html" |
| 6 | }, |
| 7 | "content_scripts": [ { |
| 8 | "all_frames": false, |
| 9 | "js": [ "jquery-1.3.2.min.js", "content_script.js" ], |
| 10 | //"js": [ "content_script.js" ], |
| 11 | "matches": [ "http://*/*", "https://*/*", "file:///*" ], |
| 12 | "run_at": "document_end" |
| 13 | } ], |
| 14 | "description": "Allows you to edit current page content.", |
| 15 | "name": "Chrome Editor", |
| 16 | "permissions": [ "tabs", "http://*/*", "https://*/*" ], |
| 17 | "version": "1.0" |
| 18 | } |