Bugtags Clipper

Bugtags Clipper

Bugtags Clipper - the easiest way to report bugs on the web to Bugtags.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bugtags Clipper",
  "version": "1.1.0",
  "description": "Bugtags Clipper - the easiest way to report bugs on the web to Bugtags.",
  "icons": {
    "16": "res/images/icon16.png",
    "48": "res/images/icon48.png",
    "128": "res/images/icon128.png"
  },
  "author": "Bugtags",
  "browser_action": {
    "default_icon": {
      "19": "res/images/icon19.png",
      "36": "res/images/icon36.png"
    },
    "default_title": "Bugtags Clipper"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "res/scripts/app.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://bugtags.cn/*",
        "https://work.bugtags.cn/*"
      ],
      "js": [
        "res/scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "cookies"
  ]
}