-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
William Delmas
committed
Oct 29, 2017
1 parent
f7c9e1a
commit 1fba3cd
Showing
2 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |