Dark Skin For Crunchyroll

Adds a toggleable dark theme to Crunchyroll.com

Dark Skin For Crunchyroll란 무엇입니까?

Dark Skin For Crunchyroll은(는) Tyler Holinka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a toggleable dark theme to Crunchyroll.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Dark Skin For Crunchyroll 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Source is on github: https://github.com/tholinka/Dark-Crunchyroll-Plugin. Everyone is welcome to contribute!

This plugin aims to provide a quality dark theme for Crunchyroll.com. This is primarily because dark themes are easier on the eye when in a darker environment. It also leaves a button in the toolbar to quickly disable and re-enable the theme.

If there are any un-themed pages, or other issues such as weird color choices, please report them!

Changelog: Available at http://github.com/tholinka/Dark-Crunchyroll-Plugin/releases

This project is originally based off of the Dark Youtube Plugin for Chrome https://github.com/georgyangelov/Dark-youtube-plugin-chrome, though most of the code involved has since been rewritten.                    

확장 프로그램 기본 정보

이름 Dark Skin For Crunchyroll Dark Skin For Crunchyroll
ID agjiicokbioponboibkfhfgmhcacafph
공식 URL https://chromewebstore.google.com/detail/dark-skin-for-crunchyroll/agjiicokbioponboibkfhfgmhcacafph
설명 Adds a toggleable dark theme to Crunchyroll.com
파일 크기 26.05 KB
설치 횟수 28,632
현재 버전 2.2.0
최근 업데이트 2020-08-10
출시 날짜 2020-03-29
평점 4.79/5 총 92 개의 평점
개발자 Tyler Holinka
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tholinka/Dark-Crunchyroll-Plugin/
도움말 페이지 URL https://github.com/tholinka/Dark-Crunchyroll-Plugin/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Dark CR",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/www.crunchyroll.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "page": "background_page.html",
        "persistent": false
    },
    "icons": {
        "16": "images\/dark_crunchyroll_16.png",
        "48": "images\/dark_crunchyroll_48.png",
        "64": "images\/dark_crunchyroll_64.png",
        "128": "images\/dark_crunchyroll_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/dark_crunchyroll_16.png",
            "48": "images\/dark_crunchyroll_48.png",
            "64": "images\/dark_crunchyroll_64.png",
            "128": "images\/dark_crunchyroll_128.png"
        },
        "default_title": "Toggle Crunchyroll Dark Skin"
    },
    "web_accessible_resources": [
        "styles.css",
        "images\/arrows.png",
        "images\/queue_arrow.png",
        "images\/queue_dropdown_arrow.png",
        "images\/quote_start.png",
        "images\/quote_end.png",
        "images\/views-count-bubble.png"
    ],
    "version": "2.2.0",
    "homepage_url": "https:\/\/github.com\/tholinka\/Dark-Crunchyroll-Plugin",
    "description": "Adds a toggleable dark theme to Crunchyroll.com",
    "name": "Dark Skin For Crunchyroll"
}