Make Wikipedia #1

Make Wikipedia #1

This extension will move Wikipedia pages to the top of your Google search results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Make Wikipedia #1",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "This extension will move Wikipedia pages to the top of your Google search results",
  "homepage_url": "https://github.com/slaporte/make-wikipedia-first",
  "icons": {
    "16": "imgs/dotlogo-16.png",
    "48": "imgs/dotlogo-48.png",
    "128": "imgs/dotlogo-128.png"
  },
  "background": {
    "scripts": [
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "src/inject/inject.js",
        "js/jquery/jquery.js"
      ]
    }
  ],
  "options_page": "src/options/index.html"
}