Hide Link Preview in Google Sheets
Vixen Digital tool to hide link previews on hover in Google Sheets.
O que é Hide Link Preview in Google Sheets?
Hide Link Preview in Google Sheets é uma extensão do Chrome desenvolvida por Vixen Digital, e sua principal característica é "Vixen Digital tool to hide link previews on hover in Google Sheets.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hide Link Preview in Google Sheets
Baixe arquivos de extensão Hide Link Preview in Google Sheets no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Hide Link Preview in Google Sheets |
ID | mhkciofjljfadebnghpccobljpbaagee |
URL Oficial | https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee |
Descrição | Vixen Digital tool to hide link previews on hover in Google Sheets. |
Tamanho do Arquivo | 76.96 KB |
Contagem de Instalações | 35 |
Versão Atual | 1.0 |
Última Atualização | 2023-08-17 |
Data de Publicação | 2023-08-17 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Vixen Digital |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.vixendigital.com/ |
URL da Página de Ajuda | https://www.vixendigital.com/#contact |
URL da Página de Política de Privacidade | https://www.vixendigital.com/privacy-policy |
Idiomas Suportados | 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" ] } ] } |