Move Reddit Buttons

Move Reddit Buttons

Moves the share/save/hide/report buttons to the left.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Move Reddit Buttons",
  "description": "Moves the share/save/hide/report buttons to the left.",
  "version": "1.23.1",
  "background": {
    "scripts": []
  },
  "permissions": [
    "http://*.reddit.com/",
    "https://*.reddit.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.reddit.com/*",
        "https://*.reddit.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "moveRedditButtons.user.js"
      ]
    }
  ]
}