Linkinize - Bookmark Manager for Teams
Bookmark Manager for Teams
什麼是Linkinize - Bookmark Manager for Teams?
Linkinize - Bookmark Manager for Teams是由Linkinize開發的Chrome擴展程式,該擴展的主要功能是“Bookmark Manager for Teams”。
擴展截圖
下載Linkinize - Bookmark Manager for Teams擴展crx文件
下載Linkinize - Bookmark Manager for Teams擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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.                     擴展基本資訊
| 名稱 |  | 
| ID | ecihffhadpoocggaefliinhjbjgekdnh | 
| 官方網址 | https://chromewebstore.google.com/detail/linkinize-bookmark-manage/ecihffhadpoocggaefliinhjbjgekdnh | 
| 簡介 | Bookmark Manager for Teams | 
| 檔案大小 | 3.64 MB | 
| 安裝次數 | 92 | 
| 目前版本 | 0.5.0 | 
| 更新時間 | 2024-03-01 | 
| 上架時間 | 2023-04-17 | 
| 評分 | 5.00/5 共 2 次評分 | 
| 開發者 | Linkinize | 
| 電子郵箱 | [email protected] | 
| 付費類型 | free | 
| 擴展官網 | https://linkinize.com | 
| 說明頁面URL | https://linkinize.com | 
| 隱私政策頁面URL | https://linkinize.com/privacy | 
| 支援的語言 | 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"
} | |