Random Link Opener

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

ما هو Random Link Opener؟

Random Link Opener هو إضافة Chrome تم تطويرها بواسطة AlanD20، والميزة الرئيسية لها هي "Bookmark Links and open them when you need it, using a keyboard shortcut.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Random Link Opener

قم بتنزيل ملفات الامتداد Random Link Opener بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}