Random Bookmark Machine

Random Bookmark Machine

Explore forgotten bookmarks with this highly customizable time machine!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "short_name": "RndBkMch",
  "version": "1.8",
  "content_security_policy": "default-src 'self'",
  "description": "__MSG_extension_description__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "Res/Icons/icon16.png",
    "32": "Res/Icons/icon32.png",
    "48": "Res/Icons/icon48.png",
    "128": "Res/Icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "bookmarks",
    "notifications"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "Res/Icons/icon16.png",
      "32": "Res/Icons/icon32.png",
      "48": "Res/Icons/icon48.png",
      "128": "Res/Icons/icon128.png"
    }
  },
  "commands": {
    "get_random_bookmark": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "Open random bookmark"
    }
  }
}