Gitcoin

Gitcoin

Push Open Source Forward. The easiest way to monetize your work in open source software.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Gitcoin.co",
  "manifest_version": 2,
  "icons": {
    "128": "images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "script/pageload/functions.js",
        "script/pageload/body.js",
        "script/pageload/callbacks.js"
      ],
      "run_at": "document_end"
    }
  ],
  "homepage_url": "https://gitcoin.co/",
  "name": "Gitcoin",
  "description": "Push Open Source Forward.  The easiest way to monetize your work in open source software.",
  "version": "0.906",
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "https://gitcoin.co/"
  ],
  "background": {
    "scripts": [
      "script/background.js"
    ],
    "persistent": false
  }
}