Tagli

Take control of your LinkedIn conversations with Tagli. Stay on top of your LinkedIn inbox by tagging the messages you want to…

Co to jest Tagli?

Tagli to rozszerzenie Chrome opracowane przez Tagli, a jego główną funkcją jest „Take control of your LinkedIn conversations with Tagli. Stay on top of your LinkedIn inbox by tagging the messages you want to…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tagli

Pobierz pliki rozszerzeń Tagli 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

                        Take control of your LinkedIn conversations with Tagli.

Stay on top of your LinkedIn inbox by tagging the messages you want to come back to later.

To access Tagli dashboard navigate to the "Messages" section of LinkedIn.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tagli Tagli
ID knlidfjjemelddmpbcapghcajlkemkcj
Oficjalny URL https://chromewebstore.google.com/detail/tagli/knlidfjjemelddmpbcapghcajlkemkcj
Opis Take control of your LinkedIn conversations with Tagli. Stay on top of your LinkedIn inbox by tagging the messages you want to…
Rozmiar pliku 160 KB
Liczba instalacji 19
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-03-03
Data Publikacji 2023-01-09
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Tagli
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.tagli.co/
Adres URL Strony Pomocy https://www.tagli.co/terms-and-conditions
Adres URL Strony Polityki Prywatności https://www.tagli.co/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tagli",
    "version": "1.2",
    "description": "",
    "icons": {
        "36": "icons\/icon-36.png",
        "48": "icons\/icon-48.png",
        "72": "icons\/icon-72.png",
        "96": "icons\/icon-96.png",
        "144": "icons\/icon-144.png",
        "192": "icons\/icon-192.png",
        "512": "icons\/icon-512.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "chroma.min.js",
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "action": {
        "default_title": "Tagli",
        "default_icon": "icons\/icon-48.png",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/logo.png",
                "icons\/edit-button.png",
                "icons\/done.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}