Examine source code of Dsender

Inspect and view changes in Dsender 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,
  "version": "0.2.1",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "<all_urls>",
    "downloads",
    "storage",
    "tabs",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "contextMenus"
  ],
  "default_locale": "en",
  "browser_action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "64": "assets/icon64.png"
    },
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "page": "background/background.html"
  },
  "options_ui": {
    "page": "pages/setting/index.html"
  },
  "content_scripts": [],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}