Examine source code of Reddit URL Translation Cleaner

Inspect and view changes in Reddit URL Translation Cleaner source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Reddit URL Cleaner",
  "version": "1.0",
  "description": "Removes country-specific translations from Reddit URLs",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://*.reddit.com/*",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/icon-48.png"
    },
    "default_title": "Reddit URL Cleaner",
    "default_popup": "popup/popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{0ca79c43-2485-4f7e-bcda-90a09839c356}"
    }
  }
}