Dark Skin For Crunchyroll

Adds a toggleable dark theme to Crunchyroll.com

Τι είναι το Dark Skin For Crunchyroll;

Το Dark Skin For Crunchyroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tyler Holinka, και η κύρια λειτουργία του είναι "Adds a toggleable dark theme to Crunchyroll.com".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Dark Skin For Crunchyroll

Λήψη αρχείων επέκτασης 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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα 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"
}