Crunchy Queue
Download and share your Crunchyroll Queue!
Crunchy Queueคืออะไร?
Crunchy Queue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย crunchyqueue และคุณลักษณะหลักของมันคือ "Download and share your Crunchyroll Queue!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } ] } |