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文件
下载BizWik扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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": [ "*:\/\/*\/*" ] } ] } |