Linkinize - Bookmark Manager for Teams
Bookmark Manager for Teams
Co to jest Linkinize - Bookmark Manager for Teams?
Linkinize - Bookmark Manager for Teams to rozszerzenie Chrome opracowane przez Linkinize, a jego główną funkcją jest „Bookmark Manager for Teams”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Linkinize - Bookmark Manager for Teams
Pobierz pliki rozszerzeń Linkinize - Bookmark Manager for Teams w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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.                     Podstawowe informacje o rozszerzeniu
| Nazwa |  | 
| ID | ecihffhadpoocggaefliinhjbjgekdnh | 
| Oficjalny URL | https://chromewebstore.google.com/detail/linkinize-bookmark-manage/ecihffhadpoocggaefliinhjbjgekdnh | 
| Opis | Bookmark Manager for Teams | 
| Rozmiar pliku | 3.64 MB | 
| Liczba instalacji | 92 | 
| Aktualna Wersja | 0.5.0 | 
| Ostatnia Aktualizacja | 2024-03-01 | 
| Data Publikacji | 2023-04-17 | 
| Ocena | 5.00/5 Łącznie 2 Oceny | 
| Deweloper | Linkinize | 
| [email protected] | |
| Typ Płatności | free | 
| Strona Rozszerzenia | https://linkinize.com | 
| Adres URL Strony Pomocy | https://linkinize.com | 
| Adres URL Strony Polityki Prywatności | https://linkinize.com/privacy | 
| Obsługiwane Języki | 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"
} | |