Examine source code of OLX Pro

Inspect and view changes in OLX Pro 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": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "0.2.0",
  "author": "ostrojen1996",
  "default_locale": "en",
  "icons": {
    "48": "icons/logo48.png"
  },
  "browser_action": {
    "default_icon": "icons/logo48.png",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.olx.ua/*"
      ],
      "run_at": "document_start",
      "js": [
        "/js/top.js"
      ]
    }
  ]
}