Youtube New Layout
Gives you access to the new Youtube Layout.
Vad är Youtube New Layout?
Youtube New Layout är en Chrome-tillägg utvecklad av jesseizeboud, och dess huvudfunktion är "Gives you access to the new Youtube Layout.".
Tilläggsskärmbilder
Ladda ner Youtube New Layout-förlängningens CRX-fil
Ladda ner Youtube New Layout-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Places a cookie in your browser to get access to the new Youtube New Layout. Including Dark Mode
Grundläggande Information om Tillägg
Namn | |
ID | hbmeplfnmccnihlidhggppjkefakmepd |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd |
Beskrivning | Gives you access to the new Youtube Layout. |
Filstorlek | 92.49 KB |
Antal Installationer | 496 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2017-04-23 |
Publiceringsdatum | 2017-04-23 |
Betyg | 4.00/5 Totalt 4 Betyg |
Utvecklare | jesseizeboud |
Betalningssätt | free |
Stödda Språk | 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 } |