Random Link Opener

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

Random Link Opener là gì?

Random Link Opener là một tiện ích mở rộng Chrome được phát triển bởi AlanD20, và tính năng chính của nó là "Bookmark Links and open them when you need it, using a keyboard shortcut.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Random Link Opener

Tải xuống các tệp mở rộng Random Link Opener dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Random Link Opener Random Link Opener
ID oflnfiibddofkafdghhmohhbndkphcih
URL Chính Thức https://chromewebstore.google.com/detail/random-link-opener/oflnfiibddofkafdghhmohhbndkphcih
Mô tả Bookmark Links and open them when you need it, using a keyboard shortcut.
Kích Thước Tệp 94.11 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 1.2.2
Cập Nhật Lần Cuối 2023-02-28
Ngày Phát Hành 2022-07-07
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển AlanD20
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/AlanD20/random-link-opener
URL Trang Trợ Giúp https://github.com/AlanD20/random-link-opener/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}