Crunchy Queue

Download and share your Crunchyroll Queue!

Τι είναι το Crunchy Queue;

Το Crunchy Queue είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον crunchyqueue, και η κύρια λειτουργία του είναι "Download and share your Crunchyroll Queue!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Crunchy Queue

Λήψη αρχείων επέκτασης Crunchy Queue σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
            ]
        }
    ]
}