Remove Youtube Hotkeys
Turn Off Youtube Hotkeys
Vad är Remove Youtube Hotkeys?
Remove Youtube Hotkeys är en Chrome-tillägg utvecklad av Brent Waters, och dess huvudfunktion är "Turn Off Youtube Hotkeys".
Tilläggsskärmbilder
Ladda ner Remove Youtube Hotkeys-förlängningens CRX-fil
Ladda ner Remove Youtube Hotkeys-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This chrome extension disables youtube hotkeys whenever you are on youtube.com
Grundläggande Information om Tillägg
Namn | Remove Youtube Hotkeys |
ID | ajabfhplebocnmdcejfleginmigkhjdj |
Officiell webbadress | https://chromewebstore.google.com/detail/remove-youtube-hotkeys/ajabfhplebocnmdcejfleginmigkhjdj |
Beskrivning | Turn Off Youtube Hotkeys |
Filstorlek | 24.26 KB |
Antal Installationer | 1,187 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2019-03-15 |
Publiceringsdatum | 2019-03-15 |
Betyg | 3.19/5 Totalt 27 Betyg |
Utvecklare | Brent Waters |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/bcwaters/TurnOffYoutubeHotkeys |
Hjälpsida URL | https://github.com/bcwaters/TurnOffYoutubeHotkeys |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Youtube Hotkeys", "version": "1.0", "description": "Turn Off Youtube Hotkeys", "browser_action": [], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "\/background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "tabs", "activeTab", "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "\/chromeContent.js" ] } ] } |