Random Shipit Generator

Random Shipit Generator

Inspired by the Ship It Button extension, this extension for Git provides a button to add a random shipit icon to Pull Requests on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Random Shipit Generator",
  "version": "0.0.15",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "http://github.com/*"
      ],
      "js": [
        "libs/jQuery.min.js",
        "content.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ],
  "icons": {
    "16": "images/16x16-normal.png",
    "48": "images/48x48-normal.png",
    "128": "images/128x128-normal.png"
  },
  "web_accessible_resources": [
    "images/xmas/38x38.png"
  ]
}