Youtube New Layout
Gives you access to the new Youtube Layout.
Hvad er Youtube New Layout?
Youtube New Layout er en Chrome-udvidelse udviklet af jesseizeboud, og dens hovedfunktion er "Gives you access to the new Youtube Layout.".
Udvidelsesskærmbilleder
Download Youtube New Layout-udvidelses-CRX-fil
Download Youtube New Layout-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Places a cookie in your browser to get access to the new Youtube New Layout. Including Dark Mode
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | hbmeplfnmccnihlidhggppjkefakmepd |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd |
Beskrivelse | Gives you access to the new Youtube Layout. |
Filstørrelse | 92.49 KB |
Antal Installationer | 496 |
Nuværende Version | 1.0 |
Senest Opdateret | 2017-04-23 |
Udgivelsesdato | 2017-04-23 |
Bedømmelse | 4.00/5 Samlet 4 Bedømmelser |
Udvikler | jesseizeboud |
Betalingsmetode | free |
Understøttede Sprog | 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 } |