text info

provides selected text info of web page

Co to jest text info?

text info to rozszerzenie Chrome opracowane przez robertmhatchersd2x5, a jego główną funkcją jest „provides selected text info of web page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia text info

Pobierz pliki rozszerzeń text info w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa text info text info
ID bneoimbmmcedgdejehakhadgaeeilgce
Oficjalny URL https://chrome.google.com/webstore/detail/text-info/bneoimbmmcedgdejehakhadgaeeilgce
Opis provides selected text info of web page
Rozmiar pliku 22.39 KB
Liczba instalacji 2,595
Aktualna Wersja 0.0.0.01
Ostatnia Aktualizacja 2022-05-17
Data Publikacji 2022-05-17
Deweloper robertmhatchersd2x5
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}