Taplio X

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

Wat is Taplio X?

Taplio X is een Chrome-extensie ontwikkeld door https://taplio.com, en de belangrijkste functie is "Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Taplio X

Download Taplio X-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Taplio X Taplio X
ID dfpbcakpogbfaohnnjlgghdjkgaoiaik
Officiële URL https://chromewebstore.google.com/detail/taplio-x/dfpbcakpogbfaohnnjlgghdjkgaoiaik
Beschrijving Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.
Bestandsgrootte 443 KB
Aantal Installaties 25,523
Huidige Versie 2.5.0
Laatst Bijgewerkt 2023-11-09
Publicatiedatum 2022-03-18
Beoordeling 4.14/5 Totaal 50 Beoordelingen
Ontwikkelaar https://taplio.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://taplio.com/product/linkedin-chrome-extension
Help Pagina-URL https://taplio.com/
URL van de Privacybeleid Pagina https://taplio.com/our-privacy-policy
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}