Exit Kiosk

Exit Kiosk

This extension close tab which contains some word of your choice

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version_name": "v1.2.0",
  "version": "1.2.0",
  "author": "Daniel Sandoval <danidoble>",
  "manifest_version": 3,
  "icons": {
    "16": "img/img_16.png",
    "24": "img/img_24.png",
    "32": "img/img_32.png",
    "48": "img/img_48.png",
    "64": "img/img_64.png",
    "128": "img/img_128.png",
    "256": "img/img_256.png",
    "512": "img/img_512.png"
  },
  "background": {
    "service_worker": "build/assets/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "background"
  ],
  "action": {
    "default_icon": {
      "16": "img/img_16.png",
      "24": "img/img_24.png",
      "32": "img/img_32.png",
      "48": "img/img_48.png",
      "64": "img/img_64.png",
      "128": "img/img_128.png",
      "256": "img/img_256.png",
      "512": "img/img_512.png"
    },
    "default_title": "Exit Kiosk",
    "default_popup": "popup.html"
  },
  "options_page": "config.html",
  "options_ui": {
    "page": "config.html",
    "open_in_tab": true
  }
}