Youtube New Layout
Gives you access to the new Youtube Layout.
Cos'è Youtube New Layout?
Youtube New Layout è un'estensione di Chrome sviluppata da jesseizeboud, e la sua funzione principale è "Gives you access to the new Youtube Layout.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube New Layout
Scarica i file di estensione Youtube New Layout in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Places a cookie in your browser to get access to the new Youtube New Layout.
Including Dark Mode Informazioni di Base sull'Estensione
| Nome | |
| ID | hbmeplfnmccnihlidhggppjkefakmepd |
| URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd |
| Descrizione | Gives you access to the new Youtube Layout. |
| Dimensione del File | 92.49 KB |
| Conteggio Installazioni | 496 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2017-04-23 |
| Data di Pubblicazione | 2017-04-23 |
| Valutazione | 4.00/5 Totale 4 Valutazioni |
| Sviluppatore | jesseizeboud |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
} | |