Youtube New Layout
Gives you access to the new Youtube Layout.
Wat is Youtube New Layout?
Youtube New Layout is een Chrome-extensie ontwikkeld door jesseizeboud, en de belangrijkste functie is "Gives you access to the new Youtube Layout.".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube New Layout
Download Youtube New Layout-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
Places a cookie in your browser to get access to the new Youtube New Layout.
Including Dark Mode Basisinformatie over de Extensie
| Naam | |
| ID | hbmeplfnmccnihlidhggppjkefakmepd |
| Officiële URL | https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd |
| Beschrijving | Gives you access to the new Youtube Layout. |
| Bestandsgrootte | 92.49 KB |
| Aantal Installaties | 496 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2017-04-23 |
| Publicatiedatum | 2017-04-23 |
| Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | jesseizeboud |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |