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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vixen Digital และคุณลักษณะหลักของมันคือ "Vixen Digital tool to hide link previews on hover in Google Sheets."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide Link Preview in Google Sheets

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}