Automatic Fullscreen on Crunchyroll
Click on the switch buttom, press F11 and stay in your bed ;)
Co to jest Automatic Fullscreen on Crunchyroll?
Automatic Fullscreen on Crunchyroll to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Click on the switch buttom, press F11 and stay in your bed ;)”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Automatic Fullscreen on Crunchyroll
Pobierz pliki rozszerzeń Automatic Fullscreen on Crunchyroll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension automatically makes the crunchyroll video-player fullscreen when you open the page.
Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pcbinggjelhcbebilcmlikomcgiippjb |
| Oficjalny URL | https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb |
| Opis | Click on the switch buttom, press F11 and stay in your bed ;) |
| Rozmiar pliku | 17.22 KB |
| Liczba instalacji | 365 |
| Aktualna Wersja | 0.3 |
| Ostatnia Aktualizacja | 2020-04-12 |
| Data Publikacji | 2020-04-12 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Unknown |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/Coystark/automatic-fullscreen-crunchyroll |
| Obsługiwane Języki | 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"
}
} | |