CR-Extender

Provides extended functionality to Crunchyroll along with visual changes

Τι είναι το CR-Extender;

Το CR-Extender είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Lynn, και η κύρια λειτουργία του είναι "Provides extended functionality to Crunchyroll along with visual changes".

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

screenshot

Λήψη αρχείου CRX της επέκτασης CR-Extender

Λήψη αρχείων επέκτασης CR-Extender σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        So what the hell does this do? This extension aims to extend the functionality and fix some things about Crunchyroll's website. The feature list of what this does is set out below with an explanation of what each one does.

Just a heads up, the extension will leave the Crunchyroll store to its default layout. I don't want the extension to start interfering with not only how items are displayed on the store, but possibly during cart transactions that could result in errors or something worse for the user. This also includes anything to do with the account page, this means that as soon as you switch from looking at your queue to your account. You'll be blinded to another dimension.

* Dark Theme - The theme makes the website and everything on it a nice dark sleek grey as the background. With text on the pages appearing in either orange for links or white and light grey.                    

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

Όνομα CR-Extender CR-Extender
ID mgeighfffnjacbddcpfafnpeplbagnmf
Επίσημο URL https://chromewebstore.google.com/detail/cr-extender/mgeighfffnjacbddcpfafnpeplbagnmf
Περιγραφή Provides extended functionality to Crunchyroll along with visual changes
Μέγεθος Αρχείου 115 KB
Αριθμός Εγκαταστάσεων 492
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2017-10-06
Ημερομηνία Δημοσίευσης 2017-10-06
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Lynn
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CR-Extender",
    "version": "0.0.1",
    "description": "Provides extended functionality to Crunchyroll along with visual changes",
    "icons": {
        "48": "icons\/icon-48x48-v2.png",
        "128": "icons\/icon-128x128-v2.png"
    },
    "author": "rubbix",
    "permissions": [
        "background",
        "cookies",
        "http:\/\/www.crunchyroll.com\/",
        "http:\/\/crunchyroll.com\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.crunchyroll.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.crunchyroll.com\/store*",
                "*:\/\/api.crunchyroll.com\/*",
                "*:\/\/*.crunchyroll.com\/xml*",
                "*:\/\/*.crunchyroll.com\/acct*",
                "*:\/\/*.crunchyroll.com\/inbox*",
                "*:\/\/*.crunchyroll.com\/notifications*",
                "*:\/\/*.crunchyroll.com\/orderstatus*",
                "*:\/\/*.crunchyroll.com\/editprofile*",
                "*:\/\/*.crunchyroll.com\/activate*",
                "*:\/\/*.crunchyroll.com\/showorder*"
            ],
            "js": [
                "assets\/jquery-3.2.1.min.js",
                "assets\/fontawesome.js",
                "content.js"
            ],
            "css": [
                "assets\/fontawesome.css",
                "assets\/dark-theme.css",
                "assets\/dark-homepage.css",
                "assets\/dark-manga.css",
                "assets\/dark-news.css",
                "assets\/dark-queue.css",
                "assets\/dark-releasecalendar.css",
                "assets\/dark-shows.css",
                "assets\/dark-search.css",
                "assets\/dark-forum.css",
                "assets\/dark-profile.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/fontawesome.js"
    ]
}