Controls for YouTube
A Chrome extension that provides useful controls and options for open YouTube tabs.
Was ist Controls for YouTube?
Controls for YouTube ist eine Chrome-Erweiterung, die von http://jamesturner.im entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that provides useful controls and options for open YouTube tabs.".
Erweiterungsscreenshots
Controls for YouTube-Erweiterungs-CRX-Datei herunterladen
Laden Sie Controls for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
Name | |
ID | ifhhlbbnclgidbapibofmfoifooibiad |
Offizielle URL | https://chrome.google.com/webstore/detail/controls-for-youtube/ifhhlbbnclgidbapibofmfoifooibiad |
Beschreibung | A Chrome extension that provides useful controls and options for open YouTube tabs. |
Dateigröße | 19.48 KB |
Installationsanzahl | 57 |
Aktuelle Version | 0.1 |
Letztes Update | 2013-08-19 |
Veröffentlichungsdatum | 2013-08-19 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | http://jamesturner.im |
Zahlungsart | free |
Erweiterungswebsite | http://jamesturner.im/controls-for-youtube |
Hilfeseite URL | http://jamesturner.im/controls-for-youtube |
Unterstützte Sprachen | 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 } } |