text info

provides selected text info of web page

Что такое text info?

text info - это расширение Chrome, разработанное robertmhatchersd2x5, и его основная функция - "provides selected text info of web page".

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

screenshot

Скачать файл CRX расширения text info

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

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

                        check the details of the text  easily with this tool
Open web page example www.lipsum.com
Click on extension icon to turn ON extension
Now select the text with mouse on webpage                    

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

Название text info text info
ID bneoimbmmcedgdejehakhadgaeeilgce
Официальный URL https://chrome.google.com/webstore/detail/text-info/bneoimbmmcedgdejehakhadgaeeilgce
Описание provides selected text info of web page
Размер файла 22.39 KB
Количество установок 2,595
Текущая Версия 0.0.0.01
Последнее Обновление 2022-05-17
Дата публикации 2022-05-17
Разработчик robertmhatchersd2x5
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "text info",
    "version": "0.0.0.01",
    "manifest_version": 3,
    "description": "provides selected text info of web page",
    "action": {
        "default_icon": "icons.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icons.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}