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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}