Hide Link Preview in Google Sheets

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

Qu'est-ce que Hide Link Preview in Google Sheets ?

Hide Link Preview in Google Sheets est une extension Chrome développée par Vixen Digital, et sa fonction principale est "Vixen Digital tool to hide link previews on hover in Google Sheets.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hide Link Preview in Google Sheets

Téléchargez les fichiers d'extension Hide Link Preview in Google Sheets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hide Link Preview in Google Sheets Hide Link Preview in Google Sheets
ID mhkciofjljfadebnghpccobljpbaagee
URL Officiel https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee
Description Vixen Digital tool to hide link previews on hover in Google Sheets.
Taille du Fichier 76.96 KB
Nombre d'Installations 35
Version Actuelle 1.0
Dernière Mise à Jour 2023-08-17
Date de Publication 2023-08-17
Évaluation 5.00/5 Total 2 Évaluations
Développeur Vixen Digital
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.vixendigital.com/
URL de la Page d'Aide https://www.vixendigital.com/#contact
URL de la Page de Politique de Confidentialité https://www.vixendigital.com/privacy-policy
Langues Prises en Charge 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"
            ]
        }
    ]
}