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”。
擴展截圖
下載Dark Skin For Crunchyroll擴展crx文件
下載Dark Skin For Crunchyroll擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | agjiicokbioponboibkfhfgmhcacafph |
| 官方網址 | 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"
} | |