Subreddit Search

Subreddit Search

Makes Reddit search within the current subreddit, instead of all of Reddit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Subreddit Search",
  "description": "Makes Reddit search within the current subreddit, instead of all of Reddit.",
  "version": "1.0",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.reddit.com/*",
        "http://www.reddit.com/*"
      ],
      "js": [
        "Subreddit search.js"
      ]
    }
  ],
  "options_page": "options.html",
  "icons": {
    "128": "srs128.png"
  }
}