1234567891011121314151617181920212223242526272829 |
- {
- "name": "二维码工具",
- "version": "1.0",
- "manifest_version": 2,
- "description": "一个生成二维码的浏览器插件,不需要网络请求,本地快速生成。",
- "icons": {
- "16": "static/icon/icon_16.png",
- "48": "static/icon/icon_48.png",
- "64": "static/icon/icon_64.png",
- "128": "static/icon/icon_128.png"
- },
- "background": {
- "persistent": false,
- "scripts": [
- "static/js/bg.js"
- ]
- },
- "permissions": [
- "cookies",
- "tabs",
- "http://*/*",
- "https://*/*"
- ],
- "browser_action": {
- "default_title": "",
- "default_icon": "static/icon/icon_64.png",
- "default_popup": "template/popup.html"
- }
- }
|