Hide Link Preview in Google Sheets
Vixen Digital tool to hide link previews on hover in Google Sheets.
Co je Hide Link Preview in Google Sheets?
Hide Link Preview in Google Sheets je rozšíření Chrome vyvinuté Vixen Digital, a jeho hlavní funkcí je „Vixen Digital tool to hide link previews on hover in Google Sheets.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Hide Link Preview in Google Sheets
Stáhněte si soubory rozšíření Hide Link Preview in Google Sheets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Hide Link Preview in Google Sheets |
ID | mhkciofjljfadebnghpccobljpbaagee |
Oficiální URL | https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee |
Popis | Vixen Digital tool to hide link previews on hover in Google Sheets. |
Velikost souboru | 76.96 KB |
Počet instalací | 35 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2023-08-17 |
Datum Vydání | 2023-08-17 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Vixen Digital |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.vixendigital.com/ |
URL Stránky Nápovědy | https://www.vixendigital.com/#contact |
URL Stránky Zásad Ochrany Soukromí | https://www.vixendigital.com/privacy-policy |
Podporované Jazyky | 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" ] } ] } |