Crunchy Queue

Download and share your Crunchyroll Queue!

Qu'est-ce que Crunchy Queue ?

Crunchy Queue est une extension Chrome développée par crunchyqueue, et sa fonction principale est "Download and share your Crunchyroll Queue!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Crunchy Queue

Téléchargez les fichiers d'extension Crunchy Queue au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Crunchy Queue Crunchy Queue
ID japehhmklojagkpdpdnbhemkmmlgpkjn
URL Officiel https://chrome.google.com/webstore/detail/crunchy-queue/japehhmklojagkpdpdnbhemkmmlgpkjn
Description Download and share your Crunchyroll Queue!
Taille du Fichier 230 KB
Nombre d'Installations 60
Version Actuelle 1.6.0
Dernière Mise à Jour 2019-08-22
Date de Publication 2019-08-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur crunchyqueue
Type de Paiement free
URL de la Page d'Aide https://www.youtube.com/watch?v=kbjV_dV3ln4
Langues Prises en Charge 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"
            ]
        }
    ]
}