Colorify

Color the text on the webpage

Vad är Colorify?

Colorify är en Chrome-tillägg utvecklad av gistnoesis, och dess huvudfunktion är "Color the text on the webpage".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Colorify-förlängningens CRX-fil

Ladda ner Colorify-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

                        The computer reads any webpage and decorate it with colors, highlighting the grammatical structure. By making it easier to scan the page with your eyes, it trains your brain on a subconscious level and improves your reading comprehension.

You can set custom colors in the extension options. 

You can also enable deep learning mode in the options to have slower but better parsing quality. Be aware that deep-learning mode may use the graphics card which may cause your computer to reboot if it encounters video driver issues.
With this deep learning mode you can also display the sentence dependency tree. 

The root is underlined in black. The width of the orange underlines denotes the depth inside the dependency tree.

English only for the fast parser. English and French for the deep-learning mode starting from version 0.96.

Version 0.98 is smaller and faster but less accurate.                    

Grundläggande Information om Tillägg

Namn Colorify Colorify
ID pipnfjhpbdpejoemmkhoglekbjakmnkc
Officiell webbadress https://chromewebstore.google.com/detail/colorify/pipnfjhpbdpejoemmkhoglekbjakmnkc
Beskrivning Color the text on the webpage
Filstorlek 2.05 MB
Antal Installationer 26
Aktuell Version 0.98
Senast Uppdaterad 2020-09-21
Publiceringsdatum 2020-04-21
Utvecklare gistnoesis
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Colorify",
    "version": "0.98",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Color the text on the webpage",
    "icons": {
        "48": "icons\/colorify.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_action": {
        "default_icon": "icons\/colorify.png",
        "default_title": "colorify"
    },
    "web_accessible_resources": [
        "model\/*"
    ]
}