SocialPilot

SocialPilot

Easily Schedule Posts Across Multiple Social Media accounts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "includes/content.js"
      ]
    }
  ],
  "name": "SocialPilot",
  "icons": {
    "16": "icons/button.png",
    "48": "icons/Logo.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "js/*",
    "icons/*"
  ],
  "description": "Easily Schedule Posts Across Multiple Social Media accounts",
  "background": {
    "page": "background.html"
  },
  "homepage_url": "https://socialpilot.co",
  "version": "1.3.8",
  "options_page": "options.html",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "icons/Logo.png",
    "default_title": "SocialPilot"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webNavigation"
  ]
}