Hide Link Preview in Google Sheets
Vixen Digital tool to hide link previews on hover in Google Sheets.
Was ist Hide Link Preview in Google Sheets?
Hide Link Preview in Google Sheets ist eine Chrome-Erweiterung, die von Vixen Digital entwickelt wurde, und ihr Hauptmerkmal ist "Vixen Digital tool to hide link previews on hover in Google Sheets.".
Erweiterungsscreenshots
Hide Link Preview in Google Sheets-Erweiterungs-CRX-Datei herunterladen
Laden Sie Hide Link Preview in Google Sheets-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Hide Link Preview in Google Sheets |
ID | mhkciofjljfadebnghpccobljpbaagee |
Offizielle URL | https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee |
Beschreibung | Vixen Digital tool to hide link previews on hover in Google Sheets. |
Dateigröße | 76.96 KB |
Installationsanzahl | 35 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-08-17 |
Veröffentlichungsdatum | 2023-08-17 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Vixen Digital |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.vixendigital.com/ |
Hilfeseite URL | https://www.vixendigital.com/#contact |
URL der Datenschutzrichtlinien-Seite | https://www.vixendigital.com/privacy-policy |
Unterstützte Sprachen | 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" ] } ] } |