diff --git a/package.json b/package.json index c82de22..2190ca2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "remote", - "version": "1.0.2", + "version": "2.0.0", "description": "Remote for browsers", "main": "index.js", "scripts": { diff --git a/src/clients/extensions/manifest.json b/src/clients/extensions/manifest.json index c74f4fd..9afccc7 100644 --- a/src/clients/extensions/manifest.json +++ b/src/clients/extensions/manifest.json @@ -1,27 +1,38 @@ { "name": "Remote", "description": "Remote for your favorite player.", - "version": "1.0.2", + "version": "2.0.0", "permissions": [ - "tabs", "http://*/*", "https://*/*" + "tabs", + "http://*/*", + "https://*/*" ], - "icons": { - "128": "icon-128.png" - }, + "icons": { + "128": "icon-128.png" + }, "background": { "page": "background.html" }, - "content_scripts": [{ - "matches": ["http://*/*", "https://*/*"], - "js": ["injected.js"], - "css": ["injected.css"], - "run_at": "document_end", - "all_frames": true - }], + "content_scripts": [ + { + "matches": [ + "http://*/*", + "https://*/*" + ], + "js": [ + "injected.js" + ], + "css": [ + "injected.css" + ], + "run_at": "document_end", + "all_frames": true + } + ], "browser_action": { "default_title": "Remote for your favorite player.", "default_icon": "icon.png", "default_popup": "popup.html" }, "manifest_version": 2 -} \ No newline at end of file +}