textlint editor

textlint editor

Co je textlint editor?

textlint editor je rozšíření Chrome vyvinuté azu, a jeho hlavní funkcí je „textlint editor“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření textlint editor

Stáhněte si soubory rozšíření textlint editor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        textlint editor is privacy-first linting tool. 
This extension allow you to use textlint in browser. 
You can lint your text in textarea with own textlint scripts. 

Usage: https://github.com/textlint/editor#usage                    

Základní Informace o Rozšíření

Název textlint editor textlint editor
ID gfhlfpnpjokocfohicmfbgjneiipfeil
Oficiální URL https://chromewebstore.google.com/detail/textlint-editor/gfhlfpnpjokocfohicmfbgjneiipfeil
Popis textlint editor
Velikost souboru 648 KB
Počet instalací 834
Aktuální Verze 0.12.6
Poslední Aktualizace 2021-06-25
Datum Vydání 2021-04-22
Vývojář azu
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/textlint/editor
URL Stránky Nápovědy https://github.com/textlint/editor
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "0.12.6",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "__MSG_browserActionTitle__",
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        "scripts\/pageScript.js"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; worker-src 'self' blob:",
    "permissions": [
        "tabs",
        ""
    ]
}