Hide Link Preview in Google Sheets

Vixen Digital tool to hide link previews on hover in Google Sheets.

Co to jest Hide Link Preview in Google Sheets?

Hide Link Preview in Google Sheets to rozszerzenie Chrome opracowane przez Vixen Digital, a jego główną funkcją jest „Vixen Digital tool to hide link previews on hover in Google Sheets.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Hide Link Preview in Google Sheets

Pobierz pliki rozszerzeń Hide Link Preview in Google Sheets 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

                        This extension will hide and disable the link preview when hovering over a hyperlink in Google Sheets. A tool for SEOs or anyone that works with Google Sheets and a lot of links and wants to stop the link preview from showing. The extension will be turned on once installed but can then be turned on and off as required.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hide Link Preview in Google Sheets Hide Link Preview in Google Sheets
ID mhkciofjljfadebnghpccobljpbaagee
Oficjalny URL https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee
Opis Vixen Digital tool to hide link previews on hover in Google Sheets.
Rozmiar pliku 76.96 KB
Liczba instalacji 35
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-08-17
Data Publikacji 2023-08-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Vixen Digital
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.vixendigital.com/
Adres URL Strony Pomocy https://www.vixendigital.com/#contact
Adres URL Strony Polityki Prywatności https://www.vixendigital.com/privacy-policy
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Link Preview in Google Sheets",
    "description": "Vixen Digital tool to hide link previews on hover in Google Sheets.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_title": "Hide Link Preview in Google Sheets",
        "default_icon": {
            "16": "\/assets\/images\/action-links-grey-16.png",
            "32": "\/assets\/images\/action-links-grey-32.png",
            "48": "\/assets\/images\/action-links-grey-48.png",
            "128": "\/assets\/images\/action-links-grey-128.png"
        }
    },
    "permissions": [
        "activeTab",
        "scripting",
        "declarativeContent"
    ],
    "icons": {
        "16": "\/assets\/images\/action-links-hidden-16.png",
        "32": "\/assets\/images\/action-links-hidden-32.png",
        "48": "\/assets\/images\/action-links-hidden-48.png",
        "128": "\/assets\/images\/action-links-hidden-128.png"
    },
    "background": {
        "service_worker": "assets\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/spreadsheets\/*"
            ],
            "css": [
                "assets\/css\/page.css"
            ]
        }
    ]
}