Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
William Delmas committed Oct 29, 2017
1 parent f7c9e1a commit 1fba3cd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remote",
"version": "1.0.2",
"version": "2.0.0",
"description": "Remote for browsers",
"main": "index.js",
"scripts": {
Expand Down
37 changes: 24 additions & 13 deletions src/clients/extensions/manifest.json
Original file line number Diff line number Diff line change
@@ -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
}
}

0 comments on commit 1fba3cd

Please sign in to comment.