FeedMyTweak

Enhancing parts of the feedback system on tweakers
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FeedMyTweak",
  "description": "Enhancing parts of the feedback system on tweakers",
  "version": "1.0.0",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "activeTab",
    "https://tweakers.net/",
    "https://gathering.tweakers.net/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://tweakers.net/*"
      ],
      "css": [
        "css/bootstrap.min.css",
        "css/jquery.powertip.min.css",
        "css/tweak-styling.css"
      ],
      "js": [
        "ext/jquery.js",
        "ext/bootstrap.min.js",
        "ext/jquery.powertip.min.js",
        "enhance.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "views/modal.html"
  ]
}