Crunchyroll Full Screen, All The Time
Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.
Hvad er Crunchyroll Full Screen, All The Time?
Crunchyroll Full Screen, All The Time er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.".
Udvidelsesskærmbilleder
Download Crunchyroll Full Screen, All The Time-udvidelses-CRX-fil
Download Crunchyroll Full Screen, All The Time-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
Ever get annoyed that Crunchyroll exits full screen when autoplaying the next episode? This will stop that. Just get to a show, click on the extension "toggle binge mode" button, and you can binge in peace, without having to click the fullscreen button every time. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | aebamgnddkjifkidngamjohhgkfholmj |
| Officiel URL | https://chromewebstore.google.com/detail/crunchyroll-full-screen-a/aebamgnddkjifkidngamjohhgkfholmj |
| Beskrivelse | Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge. |
| Filstørrelse | 35.02 KB |
| Antal Installationer | 3,977 |
| Nuværende Version | 0.5 |
| Senest Opdateret | 2019-09-14 |
| Udgivelsesdato | 2019-09-13 |
| Bedømmelse | 4.15/5 Samlet 26 Bedømmelser |
| Udvikler | Unknown |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Crunchyroll Full Screen, All The Time",
"version": "0.5",
"description": "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.",
"content_scripts": [
{
"matches": [
"https:\/\/www.crunchyroll.com\/*\/*",
"http:\/\/www.crunchyroll.com\/*\/*"
],
"js": [
"jquery-3.4.1.min.js",
"content.js"
]
}
],
"browser_action": {
"default_title": "Crunchyroll Fullscreen",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistant": false
}
} | |