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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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\/*" ] } ] } |