Taplio X

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

Cos'è Taplio X?

Taplio X è un'estensione di Chrome sviluppata da https://taplio.com, e la sua funzione principale è "Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Taplio X

Scarica i file di estensione Taplio X in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Taplio X Taplio X
ID dfpbcakpogbfaohnnjlgghdjkgaoiaik
URL Ufficiale https://chromewebstore.google.com/detail/taplio-x/dfpbcakpogbfaohnnjlgghdjkgaoiaik
Descrizione Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.
Dimensione del File 443 KB
Conteggio Installazioni 25,523
Versione Corrente 2.5.0
Ultimo Aggiornamento 2023-11-09
Data di Pubblicazione 2022-03-18
Valutazione 4.14/5 Totale 50 Valutazioni
Sviluppatore https://taplio.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://taplio.com/product/linkedin-chrome-extension
URL della Pagina di Aiuto https://taplio.com/
URL della Pagina della Politica sulla Privacy https://taplio.com/our-privacy-policy
Lingue Supportate 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\/*"
            ]
        }
    ]
}