Tagli

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

Was ist Tagli?

Tagli ist eine Chrome-Erweiterung, die von Tagli entwickelt wurde, und ihr Hauptmerkmal ist "Take control of your LinkedIn conversations with Tagli. Stay on top of your LinkedIn inbox by tagging the messages you want to…".

Erweiterungsscreenshots

screenshot
screenshot

Tagli-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tagli-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tagli Tagli
ID knlidfjjemelddmpbcapghcajlkemkcj
Offizielle URL https://chromewebstore.google.com/detail/tagli/knlidfjjemelddmpbcapghcajlkemkcj
Beschreibung Take control of your LinkedIn conversations with Tagli. Stay on top of your LinkedIn inbox by tagging the messages you want to…
Dateigröße 160 KB
Installationsanzahl 19
Aktuelle Version 1.2
Letztes Update 2023-03-03
Veröffentlichungsdatum 2023-01-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Tagli
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.tagli.co/
Hilfeseite URL https://www.tagli.co/terms-and-conditions
URL der Datenschutzrichtlinien-Seite https://www.tagli.co/privacy-policy
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}