Hide Link Preview in Google Sheets

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

Hvad er Hide Link Preview in Google Sheets?

Hide Link Preview in Google Sheets er en Chrome-udvidelse udviklet af Vixen Digital, og dens hovedfunktion er "Vixen Digital tool to hide link previews on hover in Google Sheets.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Hide Link Preview in Google Sheets-udvidelses-CRX-fil

Download Hide Link Preview in Google Sheets-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Hide Link Preview in Google Sheets Hide Link Preview in Google Sheets
ID mhkciofjljfadebnghpccobljpbaagee
Officiel URL https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee
Beskrivelse Vixen Digital tool to hide link previews on hover in Google Sheets.
Filstørrelse 76.96 KB
Antal Installationer 35
Nuværende Version 1.0
Senest Opdateret 2023-08-17
Udgivelsesdato 2023-08-17
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Vixen Digital
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.vixendigital.com/
Hjælpeside-URL https://www.vixendigital.com/#contact
URL til Fortrolighedspolitik Side https://www.vixendigital.com/privacy-policy
Understøttede Sprog 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"
            ]
        }
    ]
}