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 | 
| 公式URL | 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 | 
| Eメール | [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"
} | |