Crunchyroll Enhanced

Improves your Crunchyroll experience

Crunchyroll Enhancedคืออะไร?

Crunchyroll Enhanced เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Mulder - GreatS และคุณลักษณะหลักของมันคือ "Improves your Crunchyroll experience"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Crunchyroll Enhanced

ดาวน์โหลดไฟล์ส่วนขยาย Crunchyroll Enhanced ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Enhance Crunchyroll with a better queue and stylize it in any way you want :D . Not much to tell about it, just check the screenshots and try it out ;-) . And once you do, make sure to check the option page! Like seriously, check the option page! If you don't you will be missing out on so much stuff!

If you have features you would love to see, just let me know by writing a review. Just for the record, I will *not* be implementing premium member features for normal members, because that's Crunchyroll's fair right to add or hide.

Don't know how to get to the options page? You can get there through the google chrome menu as well, but if that's too hard: Just copy and paste the following link: chrome-extension://pdmgnoogmgjalmocjinpaedbiffbjoim/optionLauncher.html                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Crunchyroll Enhanced Crunchyroll Enhanced
ID pdmgnoogmgjalmocjinpaedbiffbjoim
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/crunchyroll-enhanced/pdmgnoogmgjalmocjinpaedbiffbjoim
คำอธิบาย Improves your Crunchyroll experience
ขนาดไฟล์ 2.32 MB
จำนวนการติดตั้ง 1,926
เวอร์ชันปัจจุบัน 0.4.2
อัปเดตครั้งล่าสุด 2016-01-09
วันที่เผยแพร่ 2016-01-09
คะแนน 3.40/5 รวมทั้งหมด 15 คะแนน
ผู้พัฒนา David Mulder - GreatS
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Crunchyroll Enhanced",
    "version": "0.4.2",
    "description": "Improves your Crunchyroll experience",
    "icons": {
        "128": "logo128.png",
        "64": "logo64.png"
    },
    "author": "David Mulder",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*",
                "*:\/\/*.crunchyroll.co.uk\/*",
                "*:\/\/*.crunchyroll.fr\/*",
                "*:\/\/*.crunchyroll.ca\/*"
            ],
            "js": [
                "global.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/?comingsoon",
                "*:\/\/*.crunchyroll.co.uk\/?comingsoon",
                "*:\/\/*.crunchyroll.fr\/?comingsoon",
                "*:\/\/*.crunchyroll.ca\/?comingsoon"
            ],
            "js": [
                "comingsoon.js"
            ],
            "css": [
                "comingsoon.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*.crunchyroll.com\/home\/queue*",
                "http:\/\/*.crunchyroll.co.uk\/home\/queue*",
                "http:\/\/*.crunchyroll.fr\/home\/queue*",
                "http:\/\/*.crunchyroll.ca\/home\/queue*"
            ],
            "js": [
                "queue.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/www.crunchyroll.com\/*\/episode*"
            ],
            "js": [
                "episode.js"
            ],
            "css": [
                "episode.css"
            ]
        }
    ],
    "page_action": {
        "default_title": "Coming Soon section on Crunchyroll",
        "default_popup": "comingsoon.html",
        "default_icon": {
            "19": "logo64.png",
            "38": "logo64.png"
        }
    },
    "options_page": "optionLauncher.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}