Gab.com Share Extension

Gab.com Share Extension

An extension to easily send a post from any webpage to Gab.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "options_page": "options/options.html",
  "background.persistent": false,
  "incognito": "not_allowed",
  "offline_enabled": false,
  "version_name": "0.1.0",
  "manifest_version": 2,
  "name": "Gab.com Share Extension",
  "short_name": "Share to Gab",
  "description": "An extension to easily send a post from any webpage to Gab.com.",
  "homepage_url": "https://share.gab.com/download",
  "version": "0.1.0",
  "icons": {
    "16": "assets/images/logo/gab-g-16.png",
    "48": "assets/images/logo/gab-g-48.png",
    "128": "assets/images/logo/gab-g-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "notifications",
    "https://*.gab.com/*"
  ],
  "browser_action": {
    "default_icon": "assets/images/logo/gab-g-128.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://share.gab.com/*"
      ],
      "js": [
        "content/sharegab/script.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' https://*.gab.com/*",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+G",
        "mac": "Alt+Shift+G"
      }
    }
  }
}