Remove Youtube Hotkeys
Turn Off Youtube Hotkeys
Wat is Remove Youtube Hotkeys?
Remove Youtube Hotkeys is een Chrome-extensie ontwikkeld door Brent Waters, en de belangrijkste functie is "Turn Off Youtube Hotkeys".
Extensie Screenshots
Download het CRX-bestand van de extensie Remove Youtube Hotkeys
Download Remove Youtube Hotkeys-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This chrome extension disables youtube hotkeys whenever you are on youtube.com Basisinformatie over de Extensie
| Naam | |
| ID | ajabfhplebocnmdcejfleginmigkhjdj |
| Officiële URL | https://chromewebstore.google.com/detail/remove-youtube-hotkeys/ajabfhplebocnmdcejfleginmigkhjdj |
| Beschrijving | Turn Off Youtube Hotkeys |
| Bestandsgrootte | 24.26 KB |
| Aantal Installaties | 1,187 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2019-03-15 |
| Publicatiedatum | 2019-03-15 |
| Beoordeling | 3.19/5 Totaal 27 Beoordelingen |
| Ontwikkelaar | Brent Waters |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/bcwaters/TurnOffYoutubeHotkeys |
| Help Pagina-URL | https://github.com/bcwaters/TurnOffYoutubeHotkeys |
| Ondersteunde Talen | 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"
]
}
]
} | |