Crunchy Queue

Download and share your Crunchyroll Queue!

Crunchy Queue là gì?

Crunchy Queue là một tiện ích mở rộng Chrome được phát triển bởi crunchyqueue, và tính năng chính của nó là "Download and share your Crunchyroll Queue!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Crunchy Queue

Tải xuống các tệp mở rộng Crunchy Queue dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Crunchy Queue Crunchy Queue
ID japehhmklojagkpdpdnbhemkmmlgpkjn
URL Chính Thức https://chrome.google.com/webstore/detail/crunchy-queue/japehhmklojagkpdpdnbhemkmmlgpkjn
Mô tả Download and share your Crunchyroll Queue!
Kích Thước Tệp 230 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.6.0
Cập Nhật Lần Cuối 2019-08-22
Ngày Phát Hành 2019-08-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển crunchyqueue
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.youtube.com/watch?v=kbjV_dV3ln4
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}