1-Click Button to your favorite Website

1-Click Button to your favorite Website

A simple toolbar button that redirects to a specified URL (either in a new tab or in the current tab). So basically a bookmark but as an add-on button :)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "1-Click Button to your favorite Website",
  "version": "1.4",
  "description": "A simple button that redirects to a specified URL. In settings you can specify the URL and whether the URL opens in the current tab or in a new tab.",
  "options_ui": {
    "page": "options.html"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Redirect",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{1184d7c0-3cf9-4161-abf0-17e31dd7fad2}"
    }
  }
}