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
Eメール [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"
            ]
        }
    ]
}