App Instance Tags

App Instance Tags

Tag all instances of web apps you're developing so you never end up messing with the wrong one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "App Instance Tags",
  "short_name": "WebApp Tags",
  "description": "Tag all instances of web apps you're developing so you never end up messing with the wrong one.",
  "version": "1.3",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "pages/popup.html"
  },
  "options_page": "pages/options.html"
}