Random Bookmark

Open a random bookmark

What is Random Bookmark?

Random Bookmark is a Chrome extension developed by Feras Albaroudi, and its main feature is "Open a random bookmark".

Extension Screenshots

screenshot

Download Random Bookmark Extension CRX File

Download Random Bookmark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The folder to open a bookmark from as well as well as where to open the bookmark can be configured.                    

Extension Basic Information

Name Random Bookmark Random Bookmark
ID eeoohjpijemgnlcegchbabgdbnikdcpd
Official URL https://chromewebstore.google.com/detail/random-bookmark/eeoohjpijemgnlcegchbabgdbnikdcpd
Description Open a random bookmark
File Size 2.1 MB
Installation Count 168
Current Version 1.2.1
Last Updated 2023-05-09
Publish Date 2020-05-12
Rating 4.00/5 Total 5 Ratings
Developer Feras Albaroudi
Email [email protected]
Payment Type free
Extension Website https://github.com/NeedsSoySauce/Random-Bookmark
Help Page URL https://github.com/NeedsSoySauce/Random-Bookmark
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Random Bookmark",
    "version": "1.2.1",
    "description": "Open a random bookmark",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "bookmarks",
        "alarms"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "images\/shuffle-gray\/16.png",
            "32": "images\/shuffle-gray\/32.png",
            "48": "images\/shuffle-gray\/48.png",
            "128": "images\/shuffle-gray\/128.png"
        }
    },
    "icons": {
        "16": "images\/shuffle-gray\/16.png",
        "32": "images\/shuffle-gray\/32.png",
        "48": "images\/shuffle-gray\/48.png",
        "128": "images\/shuffle-gray\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+B",
                "mac": "Command+B"
            }
        },
        "shuffle": {
            "description": "Shuffle"
        },
        "open-options": {
            "description": "Open options"
        }
    }
}