Linkinize - Bookmark Manager for Teams

Bookmark Manager for Teams

Linkinize - Bookmark Manager for Teams là gì?

Linkinize - Bookmark Manager for Teams là một tiện ích mở rộng Chrome được phát triển bởi Linkinize, và tính năng chính của nó là "Bookmark Manager for Teams".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Linkinize - Bookmark Manager for Teams

Tải xuống các tệp mở rộng Linkinize - Bookmark Manager for Teams 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

                        Linkinize is a powerful bookmark management extension designed specifically for teams and businesses. With Linkinize, teams can easily share links and collaborate on projects, saving time and increasing productivity.                    

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

Tên Linkinize - Bookmark Manager for Teams Linkinize - Bookmark Manager for Teams
ID ecihffhadpoocggaefliinhjbjgekdnh
URL Chính Thức https://chromewebstore.google.com/detail/linkinize-bookmark-manage/ecihffhadpoocggaefliinhjbjgekdnh
Mô tả Bookmark Manager for Teams
Kích Thước Tệp 3.64 MB
Số Lần Cài Đặt 92
Phiên Bản Hiện Tại 0.5.0
Cập Nhật Lần Cuối 2024-03-01
Ngày Phát Hành 2023-04-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Linkinize
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://linkinize.com
URL Trang Trợ Giúp https://linkinize.com
URL Trang Chính Sách Bảo Mật https://linkinize.com/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "alarms"
    ],
    "action": {
        "default_popup": "www\/index.html",
        "default_title": "Linkinize - Bookmark Manager for Teams"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+L",
                "mac": "Command+Shift+L",
                "chromeos": "Ctrl+Shift+L",
                "linux": "Ctrl+Shift+L"
            }
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.linkinize.com\/*"
            ],
            "js": [
                "auth.js"
            ]
        },
        {
            "matches": [
                "https:\/\/app.linkinize.com\/*"
            ],
            "js": [
                "app-sync.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "name": "Linkinize - Bookmark Manager for Teams",
    "short_name": "Linkinize - Bookmark Manager for Teams",
    "description": "Bookmark Manager for Teams",
    "version": "0.5.0"
}