BizWik

Allows the bizwik web application to run automations on your LinkedIn account

BizWik là gì?

BizWik là một tiện ích mở rộng Chrome được phát triển bởi LinkHelp, và tính năng chính của nó là "Allows the bizwik web application to run automations on your LinkedIn account".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BizWik

Tải xuống các tệp mở rộng BizWik dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BizWik BizWik
ID cghdjcdmopohjlogglcbocjldjhjlddg
URL Chính Thức https://chromewebstore.google.com/detail/bizwik/cghdjcdmopohjlogglcbocjldjhjlddg
Mô tả Allows the bizwik web application to run automations on your LinkedIn account
Kích Thước Tệp 1.19 MB
Số Lần Cài Đặt 258
Phiên Bản Hiện Tại 2023.12.16
Cập Nhật Lần Cuối 2023-12-16
Ngày Phát Hành 2023-01-03
Đánh Giá 4.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển LinkHelp
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.linkhelp.io/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}