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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}