Crunchyroll Queue

This Extension create a external queue for one account Crunchyroll and too many users

什麼是Crunchyroll Queue?

Crunchyroll Queue是由lordhulk96開發的Chrome擴展程式,該擴展的主要功能是“This Extension create a external queue for one account Crunchyroll and too many users”。

擴展截圖

screenshot
screenshot

下載Crunchyroll Queue擴展crx文件

下載Crunchyroll Queue擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This Extension save in your browser one queue of your anime from Crunchyroll (https://www.crunchyroll.com).

Added 2 buttons in https://www.crunchyroll.com/home/queue and https://www.crunchyroll.com/*/episode*

This button add anime in your queue, in this queue you can see or delete your anime in the future.

You can see this button on the Screenshots for locate it.

Thx for using this extension.

3.0 The crown Update! In this update add the crown..
The Crown Check for you in Crunchyroll if Exist new Episode of you anime!
Dont forget say thx!                    

擴展基本資訊

名稱 Crunchyroll Queue Crunchyroll Queue
ID hidpbdcgmlcpcgdaaobpbamhbkamihpe
官方網址 https://chromewebstore.google.com/detail/crunchyroll-queue/hidpbdcgmlcpcgdaaobpbamhbkamihpe
簡介 This Extension create a external queue for one account Crunchyroll and too many users
檔案大小 184 KB
安裝次數 34
目前版本 3.2
更新時間 2021-06-17
上架時間 2021-06-17
評分 5.00/5 共 2 次評分
開發者 lordhulk96
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This Extension create a external queue for one account Crunchyroll and too many users",
    "manifest_version": 2,
    "name": "Crunchyroll Queue",
    "version": "3.2",
    "homepage_url": "https:\/\/github.com\/Lordhulk\/crunchyroll-queue",
    "icons": {
        "512": "icons\/border-512.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*.crunchyroll.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/home\/queue"
            ],
            "js": [
                "backgroundJs\/addButton.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*\/home\/queue"
            ],
            "js": [
                "backgroundJs\/addButton.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*\/*-*"
            ],
            "js": [
                "backgroundJs\/episodeButton.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/border-512.png",
        "default_title": "Crunchyroll Queue",
        "default_popup": "popup\/queue.html"
    },
    "web_accessible_resources": [
        "icons\/border-512.png",
        "icons\/Delete.png",
        "icons\/crown_gold.png"
    ],
    "background": {
        "scripts": [
            "backgroundJs\/background.js"
        ]
    }
}