CloudyRoll

Managing your Crunchyroll queue has never been easier.

CloudyRoll란 무엇입니까?

CloudyRoll은(는) CloudMax에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Managing your Crunchyroll queue has never been easier."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

CloudyRoll 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        - Receive notifications when new episodes become available.
- Get a quick overview of which day all series air and schedule your week accordingly.
- Series are grouped depending on whether you're following a simulcast, watching ocassionally, put on hold, haven't began watching at all, or finished.
- Marking episodes as seen. Especially useful for minisodes where Crunchyroll or CloudyRoll may fail to properly mark an episode as seen.
- ... And much more!                    

확장 프로그램 기본 정보

이름 CloudyRoll CloudyRoll
ID dlllcfhpddibpcimgobcchnaknpbalod
공식 URL https://chromewebstore.google.com/detail/cloudyroll/dlllcfhpddibpcimgobcchnaknpbalod
설명 Managing your Crunchyroll queue has never been easier.
파일 크기 548 KB
설치 횟수 150
현재 버전 1.2.3.94
최근 업데이트 2016-06-27
출시 날짜 2016-06-27
평점 3.00/5 총 8 개의 평점
개발자 CloudMax
결제 유형 free
확장 프로그램 웹 사이트 http://cloudmodding.com/cloudyroll
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Max 'CloudMax' Persson",
    "name": "CloudyRoll",
    "short_name": "CloudyRoll",
    "version": "1.2.3.94",
    "description": "Managing your Crunchyroll queue has never been easier.",
    "omnibox": {
        "keyword": "cr"
    },
    "permissions": [
        "storage",
        "background",
        "cookies",
        "contextMenus",
        "notifications",
        "alarms",
        "*:\/\/*.crunchyroll.com\/*"
    ],
    "icons": {
        "16": "assets\/images\/cr.png",
        "48": "assets\/images\/cr.png",
        "128": "assets\/images\/cr.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "assets\/images\/cr.png",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ],
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "queue\/queue.js"
            ],
            "css": [
                "queue\/queue.css"
            ],
            "matches": [
                "*:\/\/*.crunchyroll.com\/home\/queue*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "content\/content.js.map",
        "queue\/queue.js.map"
    ],
    "manifest_version": 2
}