Release Calendar Filter for Crunchyroll

A filter for the Release/Simulcast Calendar on Crunchyroll.

Co to jest Release Calendar Filter for Crunchyroll?

Release Calendar Filter for Crunchyroll to rozszerzenie Chrome opracowane przez roshin.dev, a jego główną funkcją jest „A filter for the Release/Simulcast Calendar on Crunchyroll.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Release Calendar Filter for Crunchyroll

Pobierz pliki rozszerzeń Release Calendar Filter for 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

                        Do you use Crunchyroll’s Release/Simulcast Calendar to find shows to watch? 

With their ever growing catalog and the increasing number of dubs, the calendar can feel overwhelming!  

The Release Calendar Filter for Crunchyroll can help with that!! 

You can:

✅ ❎ Toggle visibility for all dubbed episodes on the calendar.
✅ ❎ Toggle visibility for all subbed episodes on the calendar.
✅ ❎ Toggle visibility for dubbed episodes in a specific language. 
✅ ❎ Include, show only, or hide episodes that are 'In Queue' (if logged in)
✅ ❎ Include, show only, or hide episodes that are premiering.
👀 See your watch progress on episodes for non active days.

🔒 You can also lock filters! So, your choices are applied automatically when you go back to the release calendar or browse another week. 

The filters work in combination with each other!!

For example, you can choose to:
👀 See only episodes that are not dubbed and 'In Queue'.
👀 See only episodes that are dubbed and premiering.
👀 See only subbed and English dubbed episodes that are 'In Queue'.
👀 and more.

📃Be sure to check out the options page of this extension!! 

If you find any issues feel free to create an issue at https://github.com/roshinc/release-calendar-filter-for-crunchyroll/issues

★  Updates

➤ 1.1.4 ( 11 January 2024 )

- Support for release calendar urls of other languages.

➤ 1.1.3 ( 29 July 2023 )

- Handle new dubs: European Portuguese, Thai, Polish, Mandarin, Catalan, and Tamil. You should be able to add any of these to the Quick Select Dub section in the options page.

➤ 1.1.2 ( 05 March 2023 )

- Fixed visual bug when restoring "In Queue" option.
- Handle titles where Crunchyroll forgets to put a space before the dub parentheses
- Handle Generic '(Dub)' as English dubs
- Handle the '2023 Crunchyroll Anime Awards'

➤ 1.1.0 ( 01 January 2023 )

- Dub only view! You can now hide all subbed episodes to have a dubbed episodes only view.
- New section in the options page that lets you pick the quick switch languages shown on the UI.
- Better filter logic that prevented some episodes from being hidden or shown when it should have been.
- Better parsing to fix some languages not being recognized.                    

Podstawowe informacje o rozszerzeniu

Nazwa Release Calendar Filter for Crunchyroll Release Calendar Filter for Crunchyroll
ID epkclcbkefpikbpopcpjjlbajhnglged
Oficjalny URL https://chromewebstore.google.com/detail/release-calendar-filter-f/epkclcbkefpikbpopcpjjlbajhnglged
Opis A filter for the Release/Simulcast Calendar on Crunchyroll.
Rozmiar pliku 179 KB
Liczba instalacji 500
Aktualna Wersja 1.1.4
Ostatnia Aktualizacja 2024-01-12
Data Publikacji 2022-05-21
Ocena 4.83/5 Łącznie 12 Oceny
Deweloper roshin.dev
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/roshinc/release-calendar-filter-for-crunchyroll
Adres URL Strony Pomocy https://github.com/roshinc/release-calendar-filter-for-crunchyroll/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Release Calendar Filter for Crunchyroll",
    "description": "A filter for the Release\/Simulcast Calendar on Crunchyroll.",
    "version": "1.1.4",
    "icons": {
        "128": "images\/icon.png"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/checkmark.svg",
                "fonts\/*",
                "options\/options.html"
            ],
            "extension_ids": [
                "obpphalkbgbbdennbifedaleahjcfmfh",
                "epkclcbkefpikbpopcpjjlbajhnglged"
            ],
            "matches": [
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/simulcastcalendar*",
                "*:\/\/*.crunchyroll.com\/*\/simulcastcalendar*"
            ],
            "run_at": "document_idle",
            "css": [
                "css\/fontello.css",
                "css\/index.css"
            ],
            "js": [
                "js\/bundle.js"
            ]
        }
    ]
}