Button Counter G

Button Counter G

Increments number based on the button click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Button Counter G",
  "short_name": "BCG",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Increments number based on the button click",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_title": "Button Counter G",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>"
  ]
}