Reddit Search Helper

Reddit Search Helper

Adds data to Google search results for Reddit links, displaying the thread creation date, number of comments and number of upvotes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Search Helper",
  "version": "1.2",
  "description": "Adds data to Google search results for Reddit links, displaying the thread creation date, number of comments and number of upvotes.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "https://www.reddit.com/r/*/comments"
  ],
  "background": {
    "scripts": [
      "background.js",
      "hot-reload.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "assets/*.png",
    "styles.css"
  ]
}