Crunchysync

Sync the Crunchyroll queue properly

Crunchysyncとは何ですか?

Crunchysyncはmaalniによって開発されたChromeの拡張機能で、その主な機能は「Sync the Crunchyroll queue properly」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Crunchysync拡張機能のCRXファイルをダウンロード

Crunchysync拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Crunchysync Crunchysync
ID ajfcpdkomcbeanmgbpoiedlkegdkjgfm
公式URL https://chrome.google.com/webstore/detail/crunchysync/ajfcpdkomcbeanmgbpoiedlkegdkjgfm
説明 Sync the Crunchyroll queue properly
ファイルサイズ 1.45 MB
インストール数 13
現在のバージョン 3.0.8
最終更新日 2021-10-10
公開日 2019-11-03
評価 3.75/5 合計 4 レビュー
開発者 maalni
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://gitlab.com/maalni/crunchysync/
ヘルプページのURL https://gitlab.com/maalni/crunchysync/issues
対応言語 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\/*"
            ]
        }
    ]
}