Anywhere stickers - simple sticky notes

Anywhere stickers - simple sticky notes

Attach sticky notes to any page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Anywhere stickers - simple sticky notes",
  "short_name": "AnywhereStickers",
  "description": "Attach sticky notes to any page",
  "version": "0.104.0.1",
  "author": "Kirill Zotov",
  "options_page": "options.html",
  "action": {
    "default_icon": "icon.png",
    "default_title": "Anywhere stickers"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "zepto.min.js",
        "onScreenNotificator.js",
        "extension.js",
        "js.js"
      ],
      "css": [
        "css.css",
        "onScreenNotificator.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "icons": {
    "128": "icon_128.png"
  }
}