Taplio X
Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.
Co to jest Taplio X?
Taplio X to rozszerzenie Chrome opracowane przez https://taplio.com, a jego główną funkcją jest „Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Taplio X
Pobierz pliki rozszerzeń Taplio X 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
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Taplio X |
ID | dfpbcakpogbfaohnnjlgghdjkgaoiaik |
Oficjalny URL | https://chromewebstore.google.com/detail/taplio-x/dfpbcakpogbfaohnnjlgghdjkgaoiaik |
Opis | Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people. |
Rozmiar pliku | 443 KB |
Liczba instalacji | 25,523 |
Aktualna Wersja | 2.5.0 |
Ostatnia Aktualizacja | 2023-11-09 |
Data Publikacji | 2022-03-18 |
Ocena | 4.14/5 Łącznie 50 Oceny |
Deweloper | https://taplio.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://taplio.com/product/linkedin-chrome-extension |
Adres URL Strony Pomocy | https://taplio.com/ |
Adres URL Strony Polityki Prywatności | https://taplio.com/our-privacy-policy |
Obsługiwane Języki | 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\/*" ] } ] } |