Wormhole

quicker way to access frequently used url

Wormhole란 무엇입니까?

Wormhole은(는) obadiahwu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "quicker way to access frequently used url"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Wormhole 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        [Main function]
1. dashboard for favorite urls; (in the page, type the number of that url will jump to that url)
2. extract info from clipboard content and jump to the related page based on your setting.
ex1: extract continue number from clipboard and compose URL to query what's human time representation of the epoch time "https://www.epochconverter.com/?q=${numberExtracted}"
ex2: extract possible git file name and compose it to be url of the github link
https://github.com/hardCodedAccountName/hardCodedDepotName/${fileNameExtractedFromClipboard}

[Keyboard shortcuts]
Ctrl+Shift+1  :  open the dashboard of favorite urls
Ctrl+Shift+2  :  compose url based on "extract content from clipboard" and jump to the url.

[How to customize extension]
* feature 1
- edit favorite urls - edit the url table in the dashboard of favorite urls
- save favorite urls - once you edit the url table, make sure you click the button 'save local' to save it
- backup favorite urls to bookmark - if you like current urls set and want to backup it, click button 'save bookmark' to save it
* feature 2
- set regex to extract content - In the dashboard of favorite urls, there's two button in the top of the page; the one 'Regex of Extracting clipboard' could point you to the setting page.
- if there's multiple matched, you could configure priority of them. - in the configure page, there's a property 'priority of quick jump' is to set which priority; higher number get higher priority.

[Usage]
1. jump to dashboard for favorite urls
2. jump to the page based on clipboard
3. if you want to select url while there's multiple matched, you could just click the extension icon.

[additional info]
* if the default keyboard shortcuts not fit your preference, you could modify it. Just google "how to change extension shortcut", there's many article explained how; ex: https://www.turnoffthelights.com/support/browser-extension/how-to-change-the-keyboard-shortcut-key/                    

확장 프로그램 기본 정보

이름 Wormhole Wormhole
ID obblffbicljiphaihaaagkaimmamnglj
공식 URL https://chromewebstore.google.com/detail/wormhole/obblffbicljiphaihaaagkaimmamnglj
설명 quicker way to access frequently used url
파일 크기 755 KB
설치 횟수 29
현재 버전 1.0.2022.0303
최근 업데이트 2022-03-03
출시 날짜 2021-08-31
개발자 obadiahwu
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Wormhole",
    "name": "Wormhole",
    "description": "quicker way to access frequently used url",
    "version": "1.0.2022.0303",
    "manifest_version": 3,
    "background": {
        "service_worker": "background_merged.js"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "clipboardRead",
        "storage",
        "activeTab",
        "bookmarks"
    ],
    "commands": {
        "enter-favorite-mode": {
            "suggested_key": "Ctrl+Shift+1",
            "description": "Entering mode of choosing favorite url, will be back to normal mode in 5 sencods",
            "global": false
        },
        "open-clipboard-url": {
            "suggested_key": "Ctrl+Shift+2",
            "description": "Extract info from clipboard content and jump to the page",
            "global": true
        }
    },
    "icons": {
        "16": "\/images\/wormhole_download.png",
        "32": "\/images\/wormhole_download.png",
        "48": "\/images\/wormhole_download.png",
        "128": "\/images\/wormhole_download.png"
    },
    "action": {
        "default_popup": "index.html#\/popup",
        "default_icon": {
            "16": "\/images\/wormhole_download.png",
            "32": "\/images\/wormhole_download.png",
            "48": "\/images\/wormhole_download.png",
            "128": "\/images\/wormhole_download.png"
        }
    },
    "options_page": "index.html"
}