Grayscale the Web - Save Sites

Removes all color from websites, turning them gray. Can be set for specific sites and tabs, or for all sites.

Τι είναι το Grayscale the Web - Save Sites;

Το Grayscale the Web - Save Sites είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dev Astora, και η κύρια λειτουργία του είναι "Removes all color from websites, turning them gray. Can be set for specific sites and tabs, or for all sites.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Grayscale the Web - Save Sites

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

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

                        ***PLEASE NOTE*****************
When you first install Grayscale the Web, you will need to refresh any tabs that were already open before this will work for them. Once you refresh a tab it should work from then on out. Any new tabs you open should work fine right away.
********************************

Can't stop surfing the web? You may not realize it, but all of that color is designed to hijack your brain and keep you browsing.

Grayscale the Web is a great solution to help with this. It removes all of the color, giving sites a plain, grayed out look. They will appear much more boring, and that's the whole point. You'll soon find that time wasting sites hold your attention less, and this will hopefully help you focus on whatever it is you really need to be doing.

Grayscale the Web lets you turn on grayscale for all sites, specific tabs, or whatever sites you choose. You can also exclude specific sites from turning gray when using the all sites or specific tab settings.

Click the Grayscale the Web icon in your chrome menu bar to use the pop up menu to change settings, or click the 'Manage Saved/Excluded Sites' link there to go to the options page to manually manage and add or remove sites.

NOTE: This plugin won't work on certain, chrome specific pages like the chrome web store.                    

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

Όνομα Grayscale the Web - Save Sites Grayscale the Web - Save Sites
ID mblmpdpfppogibmoobibfannckeeleag
Επίσημο URL https://chromewebstore.google.com/detail/grayscale-the-web-save-si/mblmpdpfppogibmoobibfannckeeleag
Περιγραφή Removes all color from websites, turning them gray. Can be set for specific sites and tabs, or for all sites.
Μέγεθος Αρχείου 45.45 KB
Αριθμός Εγκαταστάσεων 14,738
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2018-05-24
Ημερομηνία Δημοσίευσης 2018-05-24
Αξιολόγηση 4.68/5 Συνολικά 57 Αξιολογήσεις
Προγραμματιστής Dev Astora
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grayscale the Web - Save Sites",
    "short_name": "Gray the Web",
    "description": "Removes all color from websites, turning them gray. Can be set for specific sites and tabs, or for all sites.",
    "version": "1.0.6",
    "author": "Dev Astora",
    "background": {
        "scripts": [
            "js\/manageSites.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/tinycolor-min.js",
                "js\/manageSites.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "img\/16-gs-icon-on.png",
        "32": "img\/32-gs-icon-on.png",
        "48": "img\/48-gs-icon-on.png",
        "128": "img\/128-gs-icon-on.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/16-gs-icon-off.png",
            "32": "img\/32-gs-icon-off.png",
            "48": "img\/48-gs-icon-off.png",
            "128": "img\/128-gs-icon-off.png"
        },
        "default_title": "GrayScale the Web",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ]
}