Crunchysync

Sync the Crunchyroll queue properly

O que é Crunchysync?

Crunchysync é uma extensão do Chrome desenvolvida por maalni, e sua principal característica é "Sync the Crunchyroll queue properly".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Crunchysync

Baixe arquivos de extensão Crunchysync no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Features:
- Sort your queue in 4 categories
- View details for each episode
- Get notified when a new episode airs or gets available for free (Can be disabled)
- Darkmode


If you encounter issues, please post them here:
https://gitlab.com/maalni/crunchysync/issues

Source Code:
https://gitlab.com/maalni/crunchysync

An Crunchyroll account is necessary to use this extension!
Credentials will be encrypted and stored on your device and only be used to authenticate with Crunchyroll's api

This extension is in no way affiliated with Crunchyroll!
All product names, logos, and brands are property of their respective owners.                    

Informações Básicas da Extensão

Nome Crunchysync Crunchysync
ID ajfcpdkomcbeanmgbpoiedlkegdkjgfm
URL Oficial https://chrome.google.com/webstore/detail/crunchysync/ajfcpdkomcbeanmgbpoiedlkegdkjgfm
Descrição Sync the Crunchyroll queue properly
Tamanho do Arquivo 1.45 MB
Contagem de Instalações 13
Versão Atual 3.0.8
Última Atualização 2021-10-10
Data de Publicação 2019-11-03
Classificação 3.75/5 Total de 4 Avaliações
Desenvolvedor maalni
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://gitlab.com/maalni/crunchysync/
URL da Página de Ajuda https://gitlab.com/maalni/crunchysync/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchysync",
    "version": "3.0.8",
    "manifest_version": 3,
    "description": "Sync the Crunchyroll queue properly",
    "action": {
        "default_icon": "assets\/images\/crunchysync.png",
        "default_title": "Crunchysync",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "assets\/images\/crunchysync16.png",
        "48": "assets\/images\/crunchysync48.png",
        "128": "assets\/images\/crunchysync.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "js": [
                "contentscript.min.js"
            ],
            "css": [
                "contentscript.min.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "serviceworker.min.js",
        "type": "module"
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms",
        "notifications",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*.crunchyroll.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html"
            ],
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ]
        }
    ]
}