Supporter by 60 Devs

Supporter by 60 Devs

Reward persons who help

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Supporter by 60 Devs",
  "description": "Reward persons who help",
  "version": "2.0",
  "page_action": {
    "default_title": "Supporter by 60devs",
    "default_icon": {
      "38": "data/icon_38.png"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://tips.60devs.com",
    "https://tips.60devs.com/*",
    "https://supporter.60devs.com",
    "https://supporter.60devs.com/*"
  ],
  "icons": {
    "64": "data/icon_64.png",
    "128": "data/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "http://stackoverflow.com/*",
        "https://stackoverflow.com/*",
        "https://gitter.im/*",
        "https://tips.60devs.com/*",
        "http://tips.60devs.com/*",
        "https://supporter.60devs.com/*",
        "http://supporter.60devs.com/*"
      ],
      "js": [
        "data/app.js"
      ],
      "css": [
        "data/app.css"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "index.js"
    ]
  }
}