Syndicoin

Syndicoin

Save bitcoin donation requests to syndicoin.co

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Syndicoin",
  "version": "2.5",
  "description": "Save bitcoin donation requests to syndicoin.co",
  "author": "Julian Haight",
  "permissions": [
    "tabs",
    "storage"
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png"
    },
    "default_title": "Syndicoin",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "plugin.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "validate.js",
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "tipping.js"
  ]
}