Youtube Pause
Pause a vídeo on youtube
What is Youtube Pause?
Youtube Pause is a Chrome extension developed by Valter Barros, and its main feature is "Pause a vídeo on youtube".
Extension Screenshots
Download Youtube Pause Extension CRX File
Download Youtube Pause extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Is a extension to play and pause your youtube vídeos without need change the focus on browser
Extension Basic Information
Name | Youtube Pause |
ID | hkkgahcplbiednmfhllhpgpemgenigdg |
Official URL | https://chromewebstore.google.com/detail/youtube-pause/hkkgahcplbiednmfhllhpgpemgenigdg |
Description | Pause a vídeo on youtube |
File Size | 15.35 KB |
Installation Count | 17 |
Current Version | 1.3.1 |
Last Updated | 2019-04-01 |
Publish Date | 2019-03-31 |
Rating | 4.50/5 Total 8 Ratings |
Developer | Valter Barros |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/valterbarros/button-pause-youtube |
Help Page URL | https://github.com/valterbarros/button-pause-youtube/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Pause", "version": "1.3.1", "manifest_version": 2, "description": "Pause a v\u00eddeo on youtube", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "icon-pause-32.png", "default_title": "Pause youtube video", "default_popup": "html\/popup.html" }, "icons": { "128": "icon-pause-128.png", "16": "icon-pause-16.png", "64": "icon-pause-64.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/**" ], "js": [ "js\/contentscript.js" ] } ], "permissions": [ "activeTab", "tabs", "https:\/\/www.youtube.com\/**" ], "commands": { "playPause": { "suggested_key": { "default": "MediaPlayPause" }, "global": true, "description": "Toggle play\/pause" }, "playNext": { "suggested_key": { "default": "MediaNextTrack" }, "global": true, "description": "Play next track" }, "playPrev": { "suggested_key": { "default": "MediaPrevTrack" }, "global": true, "description": "Play previous track" } } } |