Examine source code of Blog Post Template Manager

Inspect and view changes in Blog Post Template Manager 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_extensionName__",
  "version": "1.0",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/icon.png"
    },
    "default_title": "__MSG_extensionName__",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{237b1220-fca4-48b3-925b-d36caf1d8387}"
    }
  }
}