| 12345678910111213141516171819202122232425262728 |
- {
- "manifest_version": 2,
- "name": "Emby Tools.",
- "version": "1.0.2",
- "description": "Misty Emby Tools.",
- "author": "Nolovenodie",
- "homepage_url": "https://ssky.me",
- "icons": {
- "16": "static/img/icon.png",
- "19": "static/img/icon.png",
- "38": "static/img/icon.png",
- "48": "static/img/icon.png",
- "128": "static/img/icon.png"
- },
- "browser_action": {
- "default_icon": "static/img/icon.png",
- "default_title": "Misty Tools."
- },
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "css": ["static/css/style.css"],
- "js": ["static/js/jquery-3.6.0.min.js", "static/js/common-utils.js", "static/js/md5.min.js", "content/main.js"],
- "run_at": "document_end"
- }
- ],
- "permissions": ["http://*/*", "https://*/*", "<all_urls>"]
- }
|