GoBack

GoBack

Кнопка возврата назад или на главную страницу в режиме киоска

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "ru",
  "content_scripts": [
    {
      "js": [
        "goback.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "description": "__MSG_app_description__",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage"
  ],
  "version": "0.7",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}