Easy Character Counter

count string

Cos'è Easy Character Counter?

Easy Character Counter è un'estensione di Chrome sviluppata da https://macha795.com, e la sua funzione principale è "count string".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Easy Character Counter

Scarica i file di estensione Easy Character Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Easy Character Counter Easy Character Counter
ID copafpdgkjbaoenpeogidcemgmgfflgb
URL Ufficiale https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb
Descrizione count string
Dimensione del File 46.36 KB
Conteggio Installazioni 25
Versione Corrente 0.0.3
Ultimo Aggiornamento 2022-06-28
Data di Pubblicazione 2022-06-11
Sviluppatore https://macha795.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}