| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "Stylus",
- "version": "1.1.6.3",
- "minimum_chrome_version": "49",
- "description": "__MSG_description__",
- "homepage_url": "http://add0n.com/stylus.html",
- "manifest_version": 2,
- "icons": {
- "16": "/images/icon/16.png",
- "32": "/images/icon/32.png",
- "48": "/images/icon/48.png",
- "128": "/images/icon/128.png"
- },
- "permissions": [
- "tabs",
- "webNavigation",
- "contextMenus",
- "storage",
- "declarativeContent",
- "<all_urls>"
- ],
- "background": {
- "scripts": [
- "js/messaging.js",
- "vendor-overwrites/lz-string/LZString-2xspeedup.js",
- "js/color-parser.js",
- "js/usercss.js",
- "background/storage.js",
- "background/usercss-helper.js",
- "js/prefs.js",
- "js/script-loader.js",
- "background/background.js",
- "vendor/node-semver/semver.js",
- "background/style-via-api.js",
- "background/update.js"
- ]
- },
- "commands": {
- "openManage": {
- "description": "__MSG_openManage__"
- },
- "styleDisableAll": {
- "description": "__MSG_disableAllStyles__"
- }
- },
- "content_scripts": [
- {
- "matches": ["http://userstyles.org/*", "https://userstyles.org/*"],
- "run_at": "document_start",
- "all_frames": false,
- "js": ["content/install-hook-userstyles.js"]
- },
- {
- "matches": ["<all_urls>"],
- "include_globs": ["*.user.css", "*.user.styl"],
- "run_at": "document_idle",
- "all_frames": false,
- "js": ["content/install-hook-usercss.js"]
- }
- ],
- "browser_action": {
- "default_icon": {
- "16": "/images/icon/16w.png",
- "32": "/images/icon/32w.png",
- "19": "/images/icon/19w.png",
- "38": "/images/icon/38w.png"
- },
- "default_title": "Stylus",
- "default_popup": "popup.html"
- },
- "default_locale": "en",
- "options_ui": {
- "page": "options.html",
- "chrome_style": true
- }
- }
|