Crunchy Queue

Download and share your Crunchyroll Queue!

Crunchy Queue क्या है?

Crunchy Queue crunchyqueue द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download and share your Crunchyroll Queue!"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension is designed to create, export, and import queues for Crunchyroll with more features to come!

Add a large number of episodes to your queue at once, share your queue with other, and build a playlist to post on forums or your blog so other Crunchyroll users can import your recommendations!

Updates

 ~ Shift + Click a series' tile to go to it's page on Crunchyroll.com
 ~ Directly paste text to load import instead of needing a file.

Please email me if you are having problems and I will try and fix them.                    

एक्सटेंशन की मूल जानकारी

नाम Crunchy Queue Crunchy Queue
ID japehhmklojagkpdpdnbhemkmmlgpkjn
आधिकारिक URL https://chrome.google.com/webstore/detail/crunchy-queue/japehhmklojagkpdpdnbhemkmmlgpkjn
विवरण Download and share your Crunchyroll Queue!
फ़ाइल का आकार 230 KB
स्थापना संख्या 60
वर्तमान संस्करण 1.6.0
अंतिम अपडेट 2019-08-22
प्रकाशन तिथि 2019-08-22
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर crunchyqueue
भुगतान के प्रकार free
सहायता पृष्ठ URL https://www.youtube.com/watch?v=kbjV_dV3ln4
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchy Queue",
    "version": "1.6.0",
    "manifest_version": 2,
    "description": "Download and share your Crunchyroll Queue!",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/*.crunchyroll.com\/*",
            "https:\/\/*.crunchyroll.com\/*"
        ]
    },
    "permissions": [
        "tabs",
        "cookies",
        "http:\/\/*.crunchyroll.com\/*",
        "https:\/\/*.crunchyroll.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.crunchyroll.com\/home\/queue*",
                "https:\/\/www.crunchyroll.com\/home\/queue*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}