Restart Browser

Restart Browser

Allows to restart the browser with a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Restart Browser",
  "version": "2.7",
  "author": "Nacho Vazquez",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "background": {
    "scripts": [
      "restart/restart.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dialog/open-dialog.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "homepage_url": "https://www.timerestart.ga/",
  "icons": {
    "16": "icons/Restart16.png",
    "32": "icons/Restart32.png",
    "64": "icons/Restart64.png",
    "128": "icons/Restart128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/Restart16.png",
      "32": "icons/Restart32.png",
      "64": "icons/Restart64.png",
      "128": "icons/Restart128.png"
    },
    "default_title": "Restart Browser"
  },
  "permissions": [
    "notifications",
    "webNavigation",
    "tabs",
    "storage",
    "unlimitedStorage",
    "nativeMessaging"
  ]
}