Crunchysync

Sync the Crunchyroll queue properly

Crunchysync क्या है?

Crunchysync maalni द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sync the Crunchyroll queue properly"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Crunchysync एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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\/*"
            ]
        }
    ]
}