Spotlink - Mouseless browsing

Navigate the internet without using your mouse.

Spotlink - Mouseless browsing란 무엇입니까?

Spotlink - Mouseless browsing은(는) Reindert Vetter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate the internet without using your mouse."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Spotlink - Mouseless browsing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Activate spotlink and search on the page and navigate. Spotlink will remember your choice. This allows you to navigate to frequently used links even faster.

For mac: Use the left command key twice to activate spotlink.
For windows: Use the left window key twice to activate spotlink.
You can assign a second key yourself in the options.

https://github.com/reindert-vetter/spotlink/                    

확장 프로그램 기본 정보

이름 Spotlink - Mouseless browsing Spotlink - Mouseless browsing
ID ccpeekpolhnigeclfncaglcennmfcfjg
공식 URL https://chromewebstore.google.com/detail/spotlink-mouseless-browsi/ccpeekpolhnigeclfncaglcennmfcfjg
설명 Navigate the internet without using your mouse.
파일 크기 134 KB
설치 횟수 39
현재 버전 3.8.7
최근 업데이트 2023-08-24
출시 날짜 2018-06-04
평점 4.67/5 총 6 개의 평점
개발자 Reindert Vetter
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotlink - Mouseless browsing",
    "version": "3.8.7",
    "description": "Navigate the internet without using your mouse.",
    "manifest_version": 2,
    "icons": {
        "16": "media\/sl_icon\/res\/mipmap-mdpi\/sl_icon.png",
        "48": "media\/sl_icon\/res\/mipmap-mdpi\/sl_icon.png",
        "128": "media\/sl_icon\/res\/mipmap-xxxhdpi\/sl_icon.png"
    },
    "browser_action": {
        "default_icon": "media\/sl_icon\/res\/mipmap-mdpi\/sl_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "offline_enabled": true
}