Easy Character Counter

count string

Что такое Easy Character Counter?

Easy Character Counter - это расширение Chrome, разработанное https://macha795.com, и его основная функция - "count string".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Easy Character Counter

Скачайте файлы расширений Easy Character Counter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Easy Character Counter Easy Character Counter
ID copafpdgkjbaoenpeogidcemgmgfflgb
Официальный URL https://chromewebstore.google.com/detail/easy-character-counter/copafpdgkjbaoenpeogidcemgmgfflgb
Описание count string
Размер файла 46.36 KB
Количество установок 25
Текущая Версия 0.0.3
Последнее Обновление 2022-06-28
Дата публикации 2022-06-11
Разработчик https://macha795.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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:\/\/*\/*"
            ]
        }
    ]
}