Examine source code of reStyle

Inspect and view changes in reStyle 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": "reStyle",
  "short_name": "reStyle",
  "version": "0.4.2resigned1",
  "author": "Niklas Gollenstede",
  "description": "A user style manager for Firefox 57+ which can load local files and apply UI styles",
  "icons": {
    "1": "/icon.svg"
  },
  "minimum_chrome_version": "55.0.0",
  "applications": {
    "gecko": {
      "id": "@re-style",
      "strict_min_version": "59.0"
    }
  },
  "permissions": [
    "storage",
    "nativeMessaging",
    "notifications",
    "sessions",
    "tabs",
    "webNavigation",
    "<all_urls>"
  ],
  "optional_permissions": [
    "bookmarks"
  ],
  "web_accessible_resources": [],
  "incognito": "spanning",
  "background": {
    "page": "node_modules/web-ext-utils/loader/_background.html"
  },
  "options_ui": {
    "page": "reStyle#options",
    "open_in_tab": true
  },
  "browser_action": {
    "default_title": "reStyle",
    "default_icon": {
      "1": "/icon.svg"
    }
  }
}