Broadcast

Broadcast

Broadcast is the best way to quickly and easily share content from around the web to all your social networks. Fast, clean & free!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Broadcast",
  "short_name": "Broadcast",
  "version": "1.1.18",
  "description": "Broadcast is the best way to quickly and easily share content from around the web to all your social networks. Fast, clean & free!",
  "homepage_url": "https://www.broadcastapp.io",
  "icons": {
    "16": "public/images/favicon/16.png",
    "48": "public/images/favicon/48.png",
    "128": "public/images/favicon/128.png"
  },
  "background": {
    "scripts": [
      "public/js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "public/images/favicon/16.png",
      "48": "public/images/favicon/48.png",
      "128": "public/images/favicon/128.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.broadcastapp.io/*"
      ],
      "js": [
        "public/js/broadcastContent.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "cookies",
    "notifications",
    "https://*.broadcastapp.io/*"
  ],
  "optional_permissions": [
    "contextMenus",
    "notifications"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "composer.html"
  ]
}