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文件

下載Random Link Opener擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}