Automatic Fullscreen on Crunchyroll
Click on the switch buttom, press F11 and stay in your bed ;)
Was ist Automatic Fullscreen on Crunchyroll?
Automatic Fullscreen on Crunchyroll ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Click on the switch buttom, press F11 and stay in your bed ;)".
Erweiterungsscreenshots
Automatic Fullscreen on Crunchyroll-Erweiterungs-CRX-Datei herunterladen
Laden Sie Automatic Fullscreen on Crunchyroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension automatically makes the crunchyroll video-player fullscreen when you open the page.
Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pcbinggjelhcbebilcmlikomcgiippjb |
| Offizielle URL | https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb |
| Beschreibung | Click on the switch buttom, press F11 and stay in your bed ;) |
| Dateigröße | 17.22 KB |
| Installationsanzahl | 365 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2020-04-12 |
| Veröffentlichungsdatum | 2020-04-12 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Unknown |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Coystark/automatic-fullscreen-crunchyroll |
| Unterstützte Sprachen | 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"
}
} | |