BizWik
Allows the bizwik web application to run automations on your LinkedIn account
Qu'est-ce que BizWik ?
BizWik est une extension Chrome développée par LinkHelp, et sa fonction principale est "Allows the bizwik web application to run automations on your LinkedIn account".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension BizWik
Téléchargez les fichiers d'extension BizWik au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | BizWik |
ID | cghdjcdmopohjlogglcbocjldjhjlddg |
URL Officiel | https://chromewebstore.google.com/detail/bizwik/cghdjcdmopohjlogglcbocjldjhjlddg |
Description | Allows the bizwik web application to run automations on your LinkedIn account |
Taille du Fichier | 1.19 MB |
Nombre d'Installations | 258 |
Version Actuelle | 2023.12.16 |
Dernière Mise à Jour | 2023-12-16 |
Date de Publication | 2023-01-03 |
Évaluation | 4.50/5 Total 8 Évaluations |
Développeur | LinkHelp |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://www.linkhelp.io/privacy-policy |
Langues Prises en Charge | 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": [ "*:\/\/*\/*" ] } ] } |