CR Queue.0

An extension to provide additional features to crunchyroll.

CR Queue.0 क्या है?

CR Queue.0 http://nodetest-beardfist.rhcloud.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to provide additional features to crunchyroll."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CR Queue.0 एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This is an extension designed to add functionality to the Crunchyroll website. A sort of collection of requests for features that I have received and implemented. I will be adding features as I implement them. It does require that you have an account on the site and may not work properly if you do not have one. It is in its early stages of development, but hopefully I will be able to make something useful out of it. I will update as I find the time to. If you have any feature requests then please use the built-in feedback form or send me a message on Crunchyroll, if I can make it happen then I will.

Current Features:
- Autoplay in near fullscreen
- Mark shows as 'watched' and hide them in the list
- Receive notifications
- Receive and reply to PM's
- Watch forum threads for activity
- Hide specific users' forum posts
- New posts and replies are added dynamically to watched threads
- Inline quoting and editing of posts.                    

एक्सटेंशन की मूल जानकारी

नाम CR Queue.0 CR Queue.0
ID onkdfchaiebkbhlbcdgbemkblolppign
आधिकारिक URL https://chrome.google.com/webstore/detail/cr-queue0/onkdfchaiebkbhlbcdgbemkblolppign
विवरण An extension to provide additional features to crunchyroll.
फ़ाइल का आकार 269 KB
स्थापना संख्या 3,856
वर्तमान संस्करण 1.9.0.8
अंतिम अपडेट 2018-10-24
प्रकाशन तिथि 2018-10-24
रेटिंग 4.41/5 कुल 71 रेटिंग्स
डेवलपर http://nodetest-beardfist.rhcloud.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://www.crunchyroll.com/user/beardfist
सहायता पृष्ठ URL http://www.crunchyroll.com/group/Beardfists_Programming_Corner
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CR Queue.0",
    "version": "1.9.0.8",
    "manifest_version": 2,
    "description": "An extension to provide additional features to crunchyroll.",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "off.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*",
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.crunchyroll.com\/store*"
            ],
            "js": [
                "jquery.min.js",
                "notify.js"
            ],
            "css": [
                "cr.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/videos\/*",
                "https:\/\/www.crunchyroll.com\/comics\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.crunchyroll.com\/videos\/*\/alpha*",
                "https:\/\/www.crunchyroll.com\/comics\/*\/*\/volumes",
                "https:\/\/www.crunchyroll.com\/comics\/*\/alpha*"
            ],
            "js": [
                "watchList.js"
            ],
            "css": [
                "watch.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*\/episode*",
                "https:\/\/www.crunchyroll.com\/swf\/*"
            ],
            "js": [
                "ScriptSelector.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/www.crunchyroll.com\/*\/episode*",
                "https:\/\/www.crunchyroll.com\/comics*",
                "https:\/\/www.crunchyroll.com\/store*",
                "https:\/\/www.crunchyroll.com\/forum*"
            ],
            "js": [
                "episodeFinder.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/forumcategory*"
            ],
            "js": [
                "forumWatcher.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/forumtopic*"
            ],
            "js": [
                "threadWatcher.js",
                "blockUsers.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/user\/beardfist*",
                "https:\/\/www.crunchyroll.com\/user\/Beardfist*"
            ],
            "css": [
                "beardfist.css"
            ],
            "js": [
                "jquery-ui-1.9.2.custom.min.js",
                "beardfist.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/user\/Starry*",
                "https:\/\/www.crunchyroll.com\/user\/starry*"
            ],
            "js": [
                "jquery-ui-1.9.2.custom.min.js",
                "beardfist.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/user\/*"
            ],
            "js": [
                "addBlockedUser.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/live*"
            ],
            "js": [
                "live.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/ajax\/?req=RpcApiAutoComplete_Entity&type=3*"
            ],
            "js": [
                "userSearch.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/usercommentsearch*"
            ],
            "js": [
                "commentContext.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/anime-news*",
                "https:\/\/www.crunchyroll.com\/*\/episode*"
            ],
            "js": [
                "blockComments.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*\/episode*"
            ],
            "js": [
                "sharedViewer.js",
                "swfobject.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/www.crunchyroll.com\/*",
        "cookies",
        "webRequest",
        "webRequestBlocking",
        "notifications"
    ],
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "web_accessible_resources": [
        "checkmark.png",
        "checkmark_white.png",
        "checkmark_white_in.png",
        "checkmark_bw.png",
        "logo.png",
        "red.gif",
        "green.gif",
        "bubble-gray-240.png",
        "comments-bubble.png",
        "bubble-group.png",
        "quote_start.png",
        "quote_end.png",
        "views-count-bubble.png",
        "collection_arrow.png",
        "loading_white_16_16.gif",
        "queue_dropdown_arrow.png",
        "queue_arrow.png",
        "stars\/crstar_black_tiny.gif",
        "stars\/crstar_blue_tiny.gif",
        "stars\/crstar_brown_tiny.gif",
        "stars\/crstar_darkergreen_tiny.gif",
        "stars\/crstar_darkerpurple_tiny.gif",
        "stars\/crstar_darkerRed_tiny.gif",
        "stars\/crstar_darkerRed2_tiny.gif",
        "stars\/crstar_darkyellow_tiny.gif",
        "stars\/crstar_deepblue_tiny.gif",
        "stars\/crstar_green_tiny.gif",
        "stars\/crstar_greenblue_tiny.gif",
        "stars\/crstar_grey_tiny.gif",
        "stars\/crstar_lightblue_tiny.gif",
        "stars\/crstar_lightbrown_tiny.gif",
        "stars\/crstar_lightgreen_tiny.gif",
        "stars\/crstar_lightgrey_tiny.gif",
        "stars\/crstar_lightorange_tiny.gif",
        "stars\/crstar_lightpurple_tiny.gif",
        "stars\/crstar_lightpurple2_tiny.gif",
        "stars\/crstar_orange_tiny.gif",
        "stars\/crstar_pink_tiny.gif",
        "stars\/crstar_pink2_tiny.gif",
        "stars\/crstar_purple_tiny.gif",
        "stars\/crstar_red_tiny.gif",
        "stars\/crstar_white_tiny.gif",
        "stars\/crstar_yellow_tiny.gif",
        "stars\/crstar_yellow2_tiny.gif",
        "stars\/crstar_black_small.gif",
        "stars\/crstar_blue_small.gif",
        "stars\/crstar_brown_small.gif",
        "stars\/crstar_darkergreen_small.gif",
        "stars\/crstar_darkerpurple_small.gif",
        "stars\/crstar_darkerRed_small.gif",
        "stars\/crstar_darkerRed2_small.gif",
        "stars\/crstar_darkyellow_small.gif",
        "stars\/crstar_deepblue_small.gif",
        "stars\/crstar_green_small.gif",
        "stars\/crstar_greenblue_small.gif",
        "stars\/crstar_grey_small.gif",
        "stars\/crstar_lightblue_small.gif",
        "stars\/crstar_lightbrown_small.gif",
        "stars\/crstar_lightgreen_small.gif",
        "stars\/crstar_lightgrey_small.gif",
        "stars\/crstar_lightorange_small.gif",
        "stars\/crstar_lightpurple_small.gif",
        "stars\/crstar_lightpurple2_small.gif",
        "stars\/crstar_orange_small.gif",
        "stars\/crstar_pink_small.gif",
        "stars\/crstar_pink2_small.gif",
        "stars\/crstar_purple_small.gif",
        "stars\/crstar_red_small.gif",
        "stars\/crstar_white_small.gif",
        "stars\/crstar_yellow_small.gif",
        "stars\/crstar_yellow2_small.gif",
        "smilies\/all_static_460_20.png",
        "smilies\/blink.gif",
        "smilies\/rolleyes.gif",
        "smilies\/sweatingbullets.gif",
        "smilies\/unsure.gif",
        "smilies\/wacko.gif",
        "bg.png",
        "bodybg.png",
        "jquery-2.0.2.min.map",
        "flash\/xmlsockettest.swf",
        "reset.png",
        "close.png"
    ]
}