Better Search For Github

Better Search For Github

Save your favorite filters when searching in github repos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better Search For Github",
  "description": "Save your favorite filters when searching in github repos",
  "version": "1.3.0",
  "author": "Xavier Cambar <[email protected]>",
  "homepage_url": "https://github.com/xcambar/github-better-filters",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "css": [
        "css/content.css",
        "css/vendor/animate.css"
      ],
      "js": [
        "browser.js",
        "js/jquery.js",
        "js/uuid.js",
        "js/main.js"
      ],
      "matches": [
        "*://*.github.com/*"
      ]
    }
  ],
  "icons": {
    "16": "img/icons/16.png",
    "32": "img/icons/32.png",
    "48": "img/icons/48.png",
    "128": "img/icons/128.png"
  },
  "web_accessible_resources": []
}