Taplio X
Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.
什麼是Taplio X?
Taplio X是由https://taplio.com開發的Chrome擴展程式,該擴展的主要功能是“Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people.”。
擴展截圖
下載Taplio X擴展crx文件
下載Taplio X擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Taplio X |
ID | dfpbcakpogbfaohnnjlgghdjkgaoiaik |
官方網址 | https://chromewebstore.google.com/detail/taplio-x/dfpbcakpogbfaohnnjlgghdjkgaoiaik |
簡介 | Supercharge your LinkedIn experience: find post inspirations, consult your stats, get relevant info on people. |
檔案大小 | 443 KB |
安裝次數 | 25,523 |
目前版本 | 2.5.0 |
更新時間 | 2023-11-09 |
上架時間 | 2022-03-18 |
評分 | 4.14/5 共 50 次評分 |
開發者 | https://taplio.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://taplio.com/product/linkedin-chrome-extension |
說明頁面URL | https://taplio.com/ |
隱私政策頁面URL | https://taplio.com/our-privacy-policy |
支援的語言 | 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\/*" ] } ] } |