Hide Link Preview in Google Sheets
Vixen Digital tool to hide link previews on hover in Google Sheets.
Wat is Hide Link Preview in Google Sheets?
Hide Link Preview in Google Sheets is een Chrome-extensie ontwikkeld door Vixen Digital, en de belangrijkste functie is "Vixen Digital tool to hide link previews on hover in Google Sheets.".
Extensie Screenshots
Download het CRX-bestand van de extensie Hide Link Preview in Google Sheets
Download Hide Link Preview in Google Sheets-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Hide Link Preview in Google Sheets |
ID | mhkciofjljfadebnghpccobljpbaagee |
Officiële URL | https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee |
Beschrijving | Vixen Digital tool to hide link previews on hover in Google Sheets. |
Bestandsgrootte | 76.96 KB |
Aantal Installaties | 35 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2023-08-17 |
Publicatiedatum | 2023-08-17 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Vixen Digital |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.vixendigital.com/ |
Help Pagina-URL | https://www.vixendigital.com/#contact |
URL van de Privacybeleid Pagina | https://www.vixendigital.com/privacy-policy |
Ondersteunde Talen | 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" ] } ] } |