Examine source code of BlogMaster Scheduler

Inspect and view changes in BlogMaster Scheduler 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": 3,
  "name": "BlogMaster Scheduler",
  "version": "1.0",
  "description": "Schedule and manage blog post publications across multiple platforms",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ],
  "host_permissions": [
    "*://*.wordpress.com/*",
    "*://*.medium.com/*",
    "*://*.blogger.com/*"
  ],
  "action": {
    "default_icon": {
      "48": "icons/icon-48.png",
      "96": "icons/icon-96.png"
    },
    "default_title": "BlogMaster Scheduler",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "blogmaster-scheduler@blogmastertech.com"
    }
  }
}