Hide Link Preview in Google Sheets

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

Hide Link Preview in Google Sheets là gì?

Hide Link Preview in Google Sheets là một tiện ích mở rộng Chrome được phát triển bởi Vixen Digital, và tính năng chính của nó là "Vixen Digital tool to hide link previews on hover in Google Sheets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Link Preview in Google Sheets

Tải xuống các tệp mở rộng Hide Link Preview in Google Sheets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide Link Preview in Google Sheets Hide Link Preview in Google Sheets
ID mhkciofjljfadebnghpccobljpbaagee
URL Chính Thức https://chromewebstore.google.com/detail/hide-link-preview-in-goog/mhkciofjljfadebnghpccobljpbaagee
Mô tả Vixen Digital tool to hide link previews on hover in Google Sheets.
Kích Thước Tệp 76.96 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-08-17
Ngày Phát Hành 2023-08-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Vixen Digital
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.vixendigital.com/
URL Trang Trợ Giúp https://www.vixendigital.com/#contact
URL Trang Chính Sách Bảo Mật https://www.vixendigital.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}