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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Linkinize - Bookmark Manager for Teams 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Linkinize - Bookmark Manager for Teams Linkinize - Bookmark Manager for Teams
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
이메일 [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"
}