| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "manifest_version": 2,
- "name": "Chad-music magnets",
- "version": "1.0",
- "description": "Adds button to torrent magnet links to upload to chad-music",
- "icons": {
- "256": "logo256.png"
- },
- "browser_action": {
- "default_icon": "logo256.png",
- "default_title": "Chad Music"
- },
- "options_ui": {
- "page": "options.html",
- "browser_style": true,
- "chrome_style": true
- },
- "background": {
- "scripts": ["background.js"]
- },
- "content_scripts": [
- {
- "matches": ["<all_urls>"],
- "js": ["chadify.js"]
- }
- ],
- "web_accessible_resources": [
- "logo256.png"
- ],
- "permissions": ["storage",
- "https://chatikbot.chad-partners.com/*"],
- "browser_specific_settings": {
- "gecko": {
- "id": "music@chad-partners.com",
- "strict_min_version": "42.0"
- }
- }
- }
|