Controls for YouTube
A Chrome extension that provides useful controls and options for open YouTube tabs.
What is Controls for YouTube?
Controls for YouTube is a Chrome extension developed by http://jamesturner.im, and its main feature is "A Chrome extension that provides useful controls and options for open YouTube tabs.".
Extension Screenshots
Download Controls for YouTube Extension CRX File
Download Controls for YouTube 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
Extension Basic Information
Name | |
ID | ifhhlbbnclgidbapibofmfoifooibiad |
Official URL | https://chrome.google.com/webstore/detail/controls-for-youtube/ifhhlbbnclgidbapibofmfoifooibiad |
Description | A Chrome extension that provides useful controls and options for open YouTube tabs. |
File Size | 19.48 KB |
Installation Count | 57 |
Current Version | 0.1 |
Last Updated | 2013-08-19 |
Publish Date | 2013-08-19 |
Rating | 4.00/5 Total 1 Ratings |
Developer | http://jamesturner.im |
Payment Type | free |
Extension Website | http://jamesturner.im/controls-for-youtube |
Help Page URL | http://jamesturner.im/controls-for-youtube |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Controls for YouTube", "description": "A Chrome extension that provides useful controls and options for open YouTube tabs.", "version": "0.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "author": "James Turner", "homepage_url": "http:\/\/jamesturner.im\/controls-for-youtube", "permissions": [ "tabs", "*:\/\/*.youtube.com\/watch*", "*:\/\/*.youtube.com\/results*" ], "web_accessible_resources": [ "js\/*.js" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*", "*:\/\/*.youtube.com\/results*" ], "js": [ "js\/controls.js" ], "css": [ "css\/style.css" ], "run_at": "document_start" } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |