Random Link Opener

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

Wat is Random Link Opener?

Random Link Opener is een Chrome-extensie ontwikkeld door AlanD20, en de belangrijkste functie is "Bookmark Links and open them when you need it, using a keyboard shortcut.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Random Link Opener

Download Random Link Opener-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Random Link Opener Random Link Opener
ID oflnfiibddofkafdghhmohhbndkphcih
Officiële URL https://chromewebstore.google.com/detail/random-link-opener/oflnfiibddofkafdghhmohhbndkphcih
Beschrijving Bookmark Links and open them when you need it, using a keyboard shortcut.
Bestandsgrootte 94.11 KB
Aantal Installaties 51
Huidige Versie 1.2.2
Laatst Bijgewerkt 2023-02-28
Publicatiedatum 2022-07-07
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar AlanD20
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/AlanD20/random-link-opener
Help Pagina-URL https://github.com/AlanD20/random-link-opener/issues
Ondersteunde Talen 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"
    }
}