BizWik
Allows the bizwik web application to run automations on your LinkedIn account
BizWik란 무엇입니까?
BizWik은(는) LinkHelp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows the bizwik web application to run automations on your LinkedIn account"입니다.
확장 프로그램 스크린샷
BizWik 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bizwik Helper allows you to use multiple LinkedIn accounts on Google Chrome at the same time and switch between them seamlessly. It also links your LinkedIn accounts with the bizwik web application to run various automations of your choosing. Visit https://core.linkhelp.io/bizwik/ to access your bizwik account
확장 프로그램 기본 정보
이름 | BizWik |
ID | cghdjcdmopohjlogglcbocjldjhjlddg |
공식 URL | https://chromewebstore.google.com/detail/bizwik/cghdjcdmopohjlogglcbocjldjhjlddg |
설명 | Allows the bizwik web application to run automations on your LinkedIn account |
파일 크기 | 1.19 MB |
설치 횟수 | 258 |
현재 버전 | 2023.12.16 |
최근 업데이트 | 2023-12-16 |
출시 날짜 | 2023-01-03 |
평점 | 4.50/5 총 8 개의 평점 |
개발자 | LinkHelp |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.linkhelp.io/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "BizWik", "version": "2023.12.16", "icons": { "16": "assets\/img\/icon-16x16.png", "48": "assets\/img\/icon-48x48.png", "128": "assets\/img\/icon-128x128.png" }, "description": "Allows the bizwik web application to run automations on your LinkedIn account", "action": { "default_popup": "popup.html" }, "permissions": [ "cookies", "storage", "unlimitedStorage" ], "host_permissions": [ "https:\/\/*.linkedin.com\/*", "https:\/\/linkedin.com\/*", "https:\/\/bizwik.linkhelp.io\/*" ], "author": "LinkHelp", "minimum_chrome_version": "88", "background": { "service_worker": "server.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*", "https:\/\/bizwik.linkhelp.io\/*" ], "run_at": "document_end", "js": [ "assets\/js\/jquery.min.js", "client.js" ], "css": [ "assets\/css\/style.css" ] }, { "matches": [ "*:\/\/*\/*" ], "run_at": "document_end", "js": [ "refreshUnreadCount.js" ] } ], "default_locale": "en", "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "*:\/\/*\/*" ] } ] } |