Grayscale Tool

Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.

Vad är Grayscale Tool?

Grayscale Tool är en Chrome-tillägg utvecklad av Emanuel Malmquist, och dess huvudfunktion är "Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.".

Tilläggsskärmbilder

screenshot

Ladda ner Grayscale Tool-förlängningens CRX-fil

Ladda ner Grayscale Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Originally intended for web designers who might want to test the contrast of their content by changing to grayscale, but this extension can really be used by anyone who for some reason want to remove the colors of a web page.

The grayscale persists between page loads, and the key shortcut to activate can be customized in the options.                    

Grundläggande Information om Tillägg

Namn Grayscale Tool Grayscale Tool
ID odolflphhameojgliipcnahnipmogigo
Officiell webbadress https://chromewebstore.google.com/detail/grayscale-tool/odolflphhameojgliipcnahnipmogigo
Beskrivning Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.
Filstorlek 4.44 KB
Antal Installationer 3,566
Aktuell Version 2.0
Senast Uppdaterad 2014-10-19
Publiceringsdatum 2014-10-19
Betyg 2.57/5 Totalt 46 Betyg
Utvecklare Emanuel Malmquist
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grayscale Tool",
    "version": "2.0",
    "manifest_version": 2,
    "description": "Press shift+g (or create your own key shortcut) to (de)activate grayscaling of a web page.",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "",
                "file:\/\/\/*"
            ],
            "js": [
                "grayscale.js"
            ],
            "run_at": "document_end"
        }
    ]
}