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. 扩展基本信息
| 名称 | |
| ID | dfpbcakpogbfaohnnjlgghdjkgaoiaik |
| 官方URL | 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\/*"
]
}
]
} | |