Automatic Fullscreen on Crunchyroll
Click on the switch buttom, press F11 and stay in your bed ;)
Cos'è Automatic Fullscreen on Crunchyroll?
Automatic Fullscreen on Crunchyroll è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Click on the switch buttom, press F11 and stay in your bed ;)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Automatic Fullscreen on Crunchyroll
Scarica i file di estensione Automatic Fullscreen on Crunchyroll 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
This extension automatically makes the crunchyroll video-player fullscreen when you open the page. Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll
Informazioni di Base sull'Estensione
Nome | Automatic Fullscreen on Crunchyroll |
ID | pcbinggjelhcbebilcmlikomcgiippjb |
URL Ufficiale | https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb |
Descrizione | Click on the switch buttom, press F11 and stay in your bed ;) |
Dimensione del File | 17.22 KB |
Conteggio Installazioni | 365 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2020-04-12 |
Data di Pubblicazione | 2020-04-12 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Coystark/automatic-fullscreen-crunchyroll |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Automatic Fullscreen on Crunchyroll", "version": "0.3", "description": "Click on the switch buttom, press F11 and stay in your bed ;)", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*\/*", "http:\/\/www.crunchyroll.com\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistant": false }, "browser_action": { "default_title": "Automatic Fullscreen on Crunchyroll", "default_popup": "popup.html", "default_icon": "icons\/icon_disabled_16.png" }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |