Go Links Utility

Get inline go/link detection and much more with this power extension

Go Links Utility란 무엇입니까?

Go Links Utility은(는) https://golinks.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get inline go/link detection and much more with this power extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Go Links Utility 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Golinks are short intuitive links that are accessible anywhere. This extension enables users to convert any go/link that appears on a page and convert it into a clickable link saving seconds each time.                    

확장 프로그램 기본 정보

이름 Go Links Utility Go Links Utility
ID pdfmbbhfleglfhabcljcibpgmkkabdbd
공식 URL https://chromewebstore.google.com/detail/go-links-utility/pdfmbbhfleglfhabcljcibpgmkkabdbd
설명 Get inline go/link detection and much more with this power extension
파일 크기 2.44 MB
설치 횟수 62
현재 버전 3.1.1
최근 업데이트 2023-12-05
출시 날짜 2022-01-06
평점 5.00/5 총 1 개의 평점
개발자 https://golinks.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.golinks.com/
도움말 페이지 URL https://www.golinks.com/help/
개인정보 보호 정책 페이지 URL https://www.golinks.io/privacy.php
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Go Links Utility",
    "description": "Get inline go\/link detection and much more with this power extension",
    "homepage_url": "https:\/\/www.golinks.io",
    "version": "3.1.1",
    "icons": {
        "16": "icons\/white-icon16.png",
        "48": "icons\/white-icon48.png",
        "128": "icons\/white-icon128.png"
    },
    "action": {
        "default_icon": "icons\/white-icon48.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggleQuickLauncher": {
            "suggested_key": {
                "default": "Alt+F",
                "mac": "Alt+F"
            },
            "description": "Toggle GoLinks Launcher"
        }
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "activeTab",
        "cookies",
        "scripting",
        "storage",
        "tabs",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; connect-src https:\/\/*.golinks.io https:\/\/www.golinks.io\/; object-src 'self'; font-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.golinks.io\/*",
                "*:\/\/*.golinks.com\/*"
            ],
            "js": [
                "identifier.js"
            ],
            "run_at": "document_start"
        }
    ],
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "launcher.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}