Always on Top

Always on Top

Open an address inside a window that stays on top

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": true,
    "scripts": [
      "./js/common.js",
      "./js/background.js",
      "./js/contextMenu.js"
    ]
  },
  "browser_action": {
    "default_icon": "assets/onIcon.png",
    "default_title": "Always on Top"
  },
  "default_locale": "en",
  "description": "Open an address inside a window that stays on top",
  "icons": {
    "16": "assets/icon16.png",
    "128": "assets/onIcon.png"
  },
  "options_page": "options.html",
  "manifest_version": 2,
  "name": "Always on Top",
  "permissions": [
    "https://www.youtube.com/",
    "contextMenus"
  ],
  "short_name": "AOT",
  "version": "3.0.2",
  "web_accessible_resources": [
    "assets/onIcon.png"
  ]
}