Crunchy Queue
Download and share your Crunchyroll Queue!
什麼是Crunchy Queue?
Crunchy Queue是由crunchyqueue開發的Chrome擴展程式,該擴展的主要功能是“Download and share your Crunchyroll Queue!”。
擴展截圖
下載Crunchy Queue擴展crx文件
下載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 |
官方網址 | 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" ] } ] } |