Buffer

Buffer

Buffer is the best way to share great content to Social Networks from anywhere on the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "homepage_url": "https://buffer.com",
  "version": "6.0.6",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_title": "Share with Buffer",
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.css",
        "*.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "commands": {
    "share-to-buffer-action": {
      "suggested_key": {
        "default": "Ctrl+Shift+B",
        "windows": "Ctrl+Shift+B",
        "mac": "Command+Shift+B",
        "chromeos": "Ctrl+Shift+B",
        "linux": "Ctrl+Shift+B"
      },
      "description": "Share to Buffer"
    }
  },
  "options_ui": {
    "page": "options.html"
  }
}