-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Arcus92/settings
Extension settings, fullscreen and picture-in-picture (Chrome only)
- Loading branch information
Showing
40 changed files
with
844 additions
and
130 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"manifest_version": 3, | ||
"name": "Video Control for Instagram", | ||
"version": "{VERSION}", | ||
|
||
"description": "Adds volume and play controls to Instagram videos.", | ||
"author": "[email protected]", | ||
"homepage_url": "https://github.com/Arcus92/instagram-video-control/", | ||
"default_locale": "en", | ||
|
||
"icons": { | ||
"48": "icons/dark/icon-48.png", | ||
"64": "icons/dark/icon-64.png", | ||
"128": "icons/dark/icon-128.png" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["*://*.instagram.com/*"], | ||
"js": ["js/instagram.js"], | ||
"css": ["styles/instagram.css"], | ||
"all_frames": true | ||
} | ||
], | ||
"action": { | ||
"default_title": "__MSG_settings__", | ||
"default_popup": "html/popup.html", | ||
"default_icon": { | ||
"16": "icons/dark/icon-16.png", | ||
"32": "icons/dark/icon-32.png" | ||
}, | ||
"theme_icons": [{ | ||
"light": "icons/light/icon-16.png", | ||
"dark": "icons/dark/icon-16.png", | ||
"size": 16 | ||
},{ | ||
"light": "icons/light/icon-32.png", | ||
"dark": "icons/dark/icon-32.png", | ||
"size": 32 | ||
}] | ||
}, | ||
"permissions": ["storage"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "Video Control for Instagram", | ||
"version": "{VERSION}", | ||
|
||
"description": "Adds volume and play controls to Instagram videos.", | ||
"author": "[email protected]", | ||
"homepage_url": "https://github.com/Arcus92/instagram-video-control/", | ||
"default_locale": "en", | ||
|
||
"icons": { | ||
"48": "icons/dark/icon-48.png", | ||
"64": "icons/dark/icon-64.png", | ||
"128": "icons/dark/icon-128.png" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": ["*://*.instagram.com/*"], | ||
"js": ["js/instagram.js"], | ||
"css": ["styles/instagram.css"], | ||
"all_frames": true | ||
} | ||
], | ||
"browser_action": { | ||
"default_title": "__MSG_settings__", | ||
"default_popup": "html/popup.html", | ||
"default_icon": { | ||
"16": "icons/dark/icon-16.png", | ||
"32": "icons/dark/icon-32.png" | ||
}, | ||
"theme_icons": [{ | ||
"light": "icons/light/icon-16.png", | ||
"dark": "icons/dark/icon-16.png", | ||
"size": 16 | ||
},{ | ||
"light": "icons/light/icon-32.png", | ||
"dark": "icons/dark/icon-32.png", | ||
"size": 32 | ||
}] | ||
}, | ||
"permissions": ["storage"], | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "{a831defa-a6c9-4ca9-9593-9ccaf98462d9}" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"settings": { | ||
"message": "Settings" | ||
}, | ||
"option_show_time_code": { | ||
"message": "Show time code" | ||
}, | ||
"option_show_fullscreen": { | ||
"message": "Show fullscreen button" | ||
}, | ||
"option_show_playback_speed": { | ||
"message": "Show playback speed button" | ||
}, | ||
"option_show_picture_in_picture": { | ||
"message": "Show Picture-in-Picture button" | ||
}, | ||
"view_on_github": { | ||
"message": "View on GitHub" | ||
}, | ||
"report_an_issue": { | ||
"message": "Report an Issue" | ||
} | ||
} |
Oops, something went wrong.