Linkinize - Bookmark Manager for Teams

Bookmark Manager for Teams

Cos'è Linkinize - Bookmark Manager for Teams?

Linkinize - Bookmark Manager for Teams è un'estensione di Chrome sviluppata da Linkinize, e la sua funzione principale è "Bookmark Manager for Teams".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Linkinize - Bookmark Manager for Teams

Scarica i file di estensione Linkinize - Bookmark Manager for Teams in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Linkinize - Bookmark Manager for Teams Linkinize - Bookmark Manager for Teams
ID ecihffhadpoocggaefliinhjbjgekdnh
URL Ufficiale https://chromewebstore.google.com/detail/linkinize-bookmark-manage/ecihffhadpoocggaefliinhjbjgekdnh
Descrizione Bookmark Manager for Teams
Dimensione del File 3.64 MB
Conteggio Installazioni 92
Versione Corrente 0.5.0
Ultimo Aggiornamento 2024-03-01
Data di Pubblicazione 2023-04-17
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Linkinize
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://linkinize.com
URL della Pagina di Aiuto https://linkinize.com
URL della Pagina della Politica sulla Privacy https://linkinize.com/privacy
Lingue Supportate 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"
}