Hide Link Preview in Google Sheets

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

什么是Hide Link Preview in Google Sheets?

Hide Link Preview in Google Sheets是由Vixen Digital开发的Chrome扩展程序,该扩展的主要功能是“Vixen Digital tool to hide link previews on hover in Google Sheets.”。

扩展截图

screenshot
screenshot

下载Hide Link Preview in Google Sheets扩展crx文件

下载Hide Link Preview in Google Sheets扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Hide Link Preview in Google Sheets Hide Link Preview in Google Sheets
ID mhkciofjljfadebnghpccobljpbaagee
官方URL https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee
简介 Vixen Digital tool to hide link previews on hover in Google Sheets.
文件大小 76.96 KB
安装次数 35
当前版本 1.0
更新时间 2023-08-17
上架时间 2023-08-17
评分 5.00/5 共2次评分
开发者 Vixen Digital
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.vixendigital.com/
帮助页面URL https://www.vixendigital.com/#contact
隐私政策页面URL https://www.vixendigital.com/privacy-policy
支持的语言 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"
            ]
        }
    ]
}