Easy Character Counter

count string

Co je Easy Character Counter?

Easy Character Counter je rozšíření Chrome vyvinuté https://macha795.com, a jeho hlavní funkcí je „count string“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Easy Character Counter

Stáhněte si soubory rozšíření Easy Character Counter 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í

                        Count the number of characters in the selected text.

This is a Chrome Extension that allows you to count the number of characters in the selected text.
The number of characters is displayed in the upper right corner of the screen.

Please use it to check the number of characters in an article or for proofreading.                    

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

Název Easy Character Counter Easy Character Counter
ID copafpdgkjbaoenpeogidcemgmgfflgb
Oficiální URL https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb
Popis count string
Velikost souboru 46.36 KB
Počet instalací 25
Aktuální Verze 0.0.3
Poslední Aktualizace 2022-06-28
Datum Vydání 2022-06-11
Vývojář https://macha795.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.3",
    "manifest_version": 3,
    "default_locale": "en",
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png",
        "512": "img\/icon_512.png"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/contents.css"
            ],
            "js": [
                "plugin\/jquery.min.js",
                "js\/contents.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "web_accessible_resources": [
        {
            "resources": [
                "img\/close_w.svg"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}