Wiki URL Shortener

Wiki URL Shortener

The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Wiki URL Shortener",
  "description": "The Wiki URL Shortener allows you to create short URLs for any page on projects hosted by the Wikimedia Foundation",
  "version": "1.0.0",
  "author": "Arash Soleimani",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "contextMenus",
    "storage",
    "<all_urls>",
    "activeTab",
    "*://*.wikipedia.org/*",
    "*://*.wikimedia.org/*",
    "*://*.wikibooks.org/*",
    "*://*.wikinews.org/*",
    "*://*.wikisource.org/*",
    "*://*.wikiversity.org/*",
    "*://*.mediawiki.org/*",
    "*://*.wikiquote.org/*",
    "*://*.wiktionary.org/*",
    "*://*.wikivoyage.org/*",
    "*://*.wikidata.org/*",
    "*://*.wikimediafoundation.org/*"
  ],
  "homepage_url": "https://leomoon.com/downloads/plugins/wiki-url-shortener-extension"
}