Youtube New Layout
Gives you access to the new Youtube Layout.
Was ist Youtube New Layout?
Youtube New Layout ist eine Chrome-Erweiterung, die von jesseizeboud entwickelt wurde, und ihr Hauptmerkmal ist "Gives you access to the new Youtube Layout.".
Erweiterungsscreenshots
Youtube New Layout-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube New Layout-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
Places a cookie in your browser to get access to the new Youtube New Layout.
Including Dark Mode Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hbmeplfnmccnihlidhggppjkefakmepd |
| Offizielle URL | https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd |
| Beschreibung | Gives you access to the new Youtube Layout. |
| Dateigröße | 92.49 KB |
| Installationsanzahl | 496 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2017-04-23 |
| Veröffentlichungsdatum | 2017-04-23 |
| Bewertung | 4.00/5 Insgesamt 4 Bewertungen |
| Entwickler | jesseizeboud |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube New Layout",
"version": "1.0",
"description": "Gives you access to the new Youtube Layout.",
"browser_action": {
"default_icon": "icon-128.png"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"background": {
"scripts": [
"bg.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"inject.js"
]
},
{
"run_at": "document_end",
"matches": [
"https:\/\/youtube.com\/*"
],
"js": [
"inject.js"
]
},
{
"run_at": "document_end",
"matches": [
"http:\/\/youtube.com\/*"
],
"js": [
"inject.js"
]
},
{
"run_at": "document_end",
"matches": [
"https:\/\/youtube.com\/*"
],
"js": [
"inject.js"
]
}
],
"manifest_version": 2
} | |