BizWik
Allows the bizwik web application to run automations on your LinkedIn account
BizWik क्या है?
BizWik LinkHelp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows the bizwik web application to run automations on your LinkedIn account"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में BizWik एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [ "*:\/\/*\/*" ] } ] } |