Crunchy Queue 2

Easily build and share playlists on Crunchyroll!

Crunchy Queue 2คืออะไร?

Crunchy Queue 2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Justin N และคุณลักษณะหลักของมันคือ "Easily build and share playlists on Crunchyroll!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crunchy Queue 2

ดาวน์โหลดไฟล์ส่วนขยาย Crunchy Queue 2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a much improved version of the first version of Crunchy Queue I created a couple years ago. I've also added a checkbox on the "shows" page so that you can hide/show series that are already in your queue making it so you only see series that are new for you.

If you used the first version of Crunchy Queue, the output is in a different format. At the bottom of the Help page in Crunchy Queue 2 there is an area to convert it to the new format.

- You can share and load playlists from a short line of text that can be saved offline.
- Most of the app has been translated for Crunchyroll users in different locales.
- Selecting a Region will set your Region on Crunchyroll.com and will only show Crunchyroll content allowed in that region.
- When you load shows it will now include a rating and contain more details about the show like genres, videos available, ratings, and more.
- From the Crunchy Queue icon in the top right you can now disable and enable only features you are using, there is also a fairly detailed help page with images.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Crunchy Queue 2 Crunchy Queue 2
ID goakiljabdmefkdjmgfejefifejgcail
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/crunchy-queue-2/goakiljabdmefkdjmgfejefifejgcail
คำอธิบาย Easily build and share playlists on Crunchyroll!
ขนาดไฟล์ 1.75 MB
จำนวนการติดตั้ง 33
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2021-04-03
วันที่เผยแพร่ 2020-10-11
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Justin N
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Crunchy Queue 2",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Easily build and share playlists on Crunchyroll!",
    "icons": {
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.crunchyroll.com\/*"
        ]
    },
    "permissions": [
        "tabs",
        "cookies",
        "storage",
        "*:\/\/*.crunchyroll.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.crunchyroll.com\/*home\/queue*",
                "*:\/\/www.crunchyroll.com\/*videos*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/queueContent.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.crunchyroll.com\/*videos*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/searchContent.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/background.js",
            "js\/socket.js"
        ]
    }
}