URL Browser

URL Browser

Browse with ease in a predefined set of URLs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "URL Browser",
  "version": "0.1",
  "description": "Browse with ease in a predefined set of URLs",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "activeTab",
    "unlimitedStorage"
  ],
  "icons": {
    "128": "logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "next": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period",
        "mac": "Command+Shift+Period"
      },
      "description": "Load the next URL"
    },
    "prev": {
      "suggested_key": {
        "default": "Ctrl+Shift+Comma",
        "mac": "Command+Shift+Comma"
      },
      "description": "Load the previous URL"
    }
  }
}