Random Link Opener

Bookmark Links and open them when you need it, using a keyboard shortcut.

Random Link Opener란 무엇입니까?

Random Link Opener은(는) AlanD20에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Bookmark Links and open them when you need it, using a keyboard shortcut."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Random Link Opener 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Save links for later use and open them manually or through the context menu. Right-click on any page to access the latest or randomly open a saved bookmark. It's easy and convenient.

Access your saved links quickly and easily with our extension. Save websites and links for those moments when you need them most. Simply open the extension popup or use a custom keyboard shortcut to access your saved links without the hassle of going through numerous steps. You can also search for saved links.

* Features
- Custom keyboard shortcut can be set at chrome://extensions/shortcuts.
- Add/Edit/Remove bookmarks.
- By clicking on any saved bookmark, it opens it in a new tab.
- Enabling Sync Storage in the extension settings will sync your configuration and all saved bookmarks to your signed in Google Account.
- Disable/Enable Notification.

* Default Shortcuts (You may have to manually set in settings page):
- Ctrl + Shift + Y: Opens Extension popup.
- Ctrl + Shift + Period (.): Saves currently opened tab in your bookmark.
- Ctrl + Shift + Comma (,): Opens random saved link in your bookmark list.
- Ctrl + Shift + L: Opens latest saved link in your bookmark list.
- Ctrl + Shift + P (Suggested): Saves all opened tabs to your bookmark list.

This extension is open-source under the MIT license.

Source Code: 
https://github.com/AlanD20/random-link-opener

Download Latest From GitHub Release:
https://github.com/AlanD20/random-link-opener/releases

For Supports, Issues, Feedbacks, Contributions visit the repository issue section:
https://github.com/AlanD20/random-link-opener/issues                    

확장 프로그램 기본 정보

이름 Random Link Opener Random Link Opener
ID oflnfiibddofkafdghhmohhbndkphcih
공식 URL https://chromewebstore.google.com/detail/random-link-opener/oflnfiibddofkafdghhmohhbndkphcih
설명 Bookmark Links and open them when you need it, using a keyboard shortcut.
파일 크기 94.11 KB
설치 횟수 51
현재 버전 1.2.2
최근 업데이트 2023-02-28
출시 날짜 2022-07-07
평점 5.00/5 총 1 개의 평점
개발자 AlanD20
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AlanD20/random-link-opener
도움말 페이지 URL https://github.com/AlanD20/random-link-opener/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Random Link Opener",
    "version": "1.2.2",
    "description": "Bookmark Links and open them when you need it, using a keyboard shortcut.",
    "author": "AlanD20 ",
    "commands": {
        "_execute_action": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "Show Extension Popup"
        },
        "BOOKMARK_CURRENT_TAB": {
            "suggested_key": "Ctrl+Shift+Period",
            "description": "Save Currently Opened Tab"
        },
        "BOOKMARK_ALL_TAB": {
            "description": "Save All Opened Tabs"
        },
        "OPEN_RANDOM_BOOKMARK": {
            "suggested_key": "Ctrl+Shift+Comma",
            "description": "Open Random Bookmark"
        },
        "OPEN_LATEST_BOOKMARK": {
            "suggested_key": "Ctrl+Shift+L",
            "description": "Open Latest Bookmark"
        }
    },
    "icons": {
        "16": "src\/assets\/icons\/icons8-16.png",
        "32": "src\/assets\/icons\/icons8-32.png",
        "72": "src\/assets\/icons\/icons8-72.png",
        "96": "src\/assets\/icons\/icons8-96.png",
        "128": "src\/assets\/icons\/icons8-128.png"
    },
    "action": {
        "default_icons": {
            "16": "src\/assets\/icons\/icons8-16.png",
            "32": "src\/assets\/icons\/icons8-32.png",
            "72": "src\/assets\/icons\/icons8-72.png",
            "96": "src\/assets\/icons\/icons8-96.png",
            "128": "src\/assets\/icons\/icons8-128.png"
        },
        "default_title": "Random Link Opener",
        "default_popup": "index.html"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "notifications"
    ],
    "homepage_url": "https:\/\/github.com\/AlanD20\/random-link-openers",
    "offline_enabled": true,
    "options_page": "index.html",
    "options_ui": {
        "page": "index.html#\/settings"
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    }
}