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.
Vad är Crunchyroll Full Screen, All The Time?
Crunchyroll Full Screen, All The Time är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge.".
Tilläggsskärmbilder
Ladda ner Crunchyroll Full Screen, All The Time-förlängningens CRX-fil
Ladda ner Crunchyroll Full Screen, All The Time-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
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äggande Information om Tillägg
| Namn | |
| ID | aebamgnddkjifkidngamjohhgkfholmj |
| Officiell webbadress | https://chromewebstore.google.com/detail/crunchyroll-full-screen-a/aebamgnddkjifkidngamjohhgkfholmj |
| Beskrivning | Keeps fullscreen, even after autoplay. Click on a show, click on the toggle button, and press F11, and enjoy your binge. |
| Filstorlek | 35.02 KB |
| Antal Installationer | 3,977 |
| Aktuell Version | 0.5 |
| Senast Uppdaterad | 2019-09-14 |
| Publiceringsdatum | 2019-09-13 |
| Betyg | 4.15/5 Totalt 26 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Stödda Språk | 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
}
} | |