Taplio X

Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.

Was ist Taplio X?

Taplio X ist eine Chrome-Erweiterung, die von https://taplio.com entwickelt wurde, und ihr Hauptmerkmal ist "Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Taplio X-Erweiterungs-CRX-Datei herunterladen

Laden Sie Taplio X-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

                        Taplio X supercharges your experience on LinkedIn and boosts your productivity.

- Access all your stats at one glance
- Find your top performing posts ever
- Uncover information about other profiles you visit and their best content
- Discover relevant viral LinkedIn posts in your niche

Simply install the extension and Taplio X will start loading next time you visit LinkedIn in your browser.                    

Grundlegende Informationen zur Erweiterung

Name Taplio X Taplio X
ID dfpbcakpogbfaohnnjlgghdjkgaoiaik
Offizielle URL https://chromewebstore.google.com/detail/taplio-x/dfpbcakpogbfaohnnjlgghdjkgaoiaik
Beschreibung Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.
Dateigröße 443 KB
Installationsanzahl 25,523
Aktuelle Version 2.5.0
Letztes Update 2023-11-09
Veröffentlichungsdatum 2022-03-18
Bewertung 4.14/5 Insgesamt 50 Bewertungen
Entwickler https://taplio.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://taplio.com/product/linkedin-chrome-extension
Hilfeseite URL https://taplio.com/
URL der Datenschutzrichtlinien-Seite https://taplio.com/our-privacy-policy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Taplio X",
    "name": "Taplio X",
    "description": "Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.",
    "version": "2.5.0",
    "manifest_version": 3,
    "icons": {
        "16": "logo_16.png",
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "css": [
                "\/css\/root.css"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.taplio.com\/*",
                "http:\/\/localhost:3003\/*"
            ],
            "js": [
                "apibridge.js"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "cookies",
        "webRequest",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        "*:\/\/*.linkedin.com\/",
        "*:\/\/app.taplio.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "logo_taplio_500.png",
                "closeicon.png",
                "logo_48.png",
                "\/front-end\/*"
            ],
            "matches": [
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/linkedin.com\/*"
            ]
        }
    ]
}