Show Title Tag Corner

Show Title Tag Corner

Displays the page title in the four corners of the window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.1.1",
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png",
    "256": "img/256.png"
  },
  "offline_enabled": true,
  "options_ui": {
    "page": "html/setting.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "minimum_chrome_version": "88",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}