Share Tools

Share Tools

Share the current page on Twitter, FB, Reddit and many popular sites. Add your favorite site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "static/icon128.png",
    "default_title": "Share Tools",
    "default_popup": "/html/popup.html"
  },
  "description": "Share the current page on Twitter, FB, Reddit and many popular sites. Add your favorite site.",
  "homepage_url": "https://browsernative.com/share-tools-extension/",
  "icons": {
    "48": "static/icon48.png",
    "128": "static/icon128.png"
  },
  "manifest_version": 2,
  "name": "Share Tools",
  "version": "0.0.19",
  "permissions": [
    "activeTab"
  ],
  "options_ui": {
    "page": "/html/options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "html/*.html"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+S"
      }
    }
  }
}