Sketch Club tabber

Sketch Club tabber

Open a sketch in a new tab and it will automatically rate + comment

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sketch Club tabber",
  "version": "0.0.1",
  "manifest_version": 2,
  "description": "Open a sketch in a new tab and it will automatically rate + comment",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "options_page": "Options/Options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://app.sketchclub.com/sketch/*"
      ],
      "css": [
        "src/inject/inject.css"
      ],
      "js": [
        "src/inject/inject.js",
        "js/jquery/jquery.js",
        "js/jquery/jquery.waituntilexists.js",
        "/Options/JS/Options.js"
      ]
    }
  ]
}