Examine source code of theme-color polyfill

Inspect and view changes in theme-color polyfill 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
{
  "name": "theme-color polyfill",
  "short_name": "theme-color polyfill",
  "author": "Марко Кажић",
  "description": "Adds meta theme-color support to Firefox in the form of changing the active tab color.",
  "manifest_version": 2,
  "version": "0.0.4",
  "browser_specific_settings": {
    "gecko": {
      "id": "theme-color-polyfill@marxo.kz"
    }
  },
  "permissions": [
    "activeTab",
    "webNavigation",
    "theme",
    "<all_urls>"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/get_theme_color.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "mo.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "logo_16.png",
    "24": "logo.png",
    "32": "logo.png",
    "128": "logo_128.png"
  }
}