Social hub

Social hub

Send messages to Social hub console

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Social hub",
  "description": "Send messages to Social hub console",
  "version": "5.1",
  "browser_action": {
    "name": "Social hub",
    "default_icon": "Axel.png"
  },
  "icons": {
    "48": "Axel.png",
    "128": "Axel.png"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.12.3.min.js",
        "jquery.waituntilexists.min.js",
        "date.js",
        "background.js",
        "settings.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "http://127.0.0.1:8090/SocialHub/REST/",
    "storage"
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "styles.css",
    "AxelArrow.png",
    "SocialHubIcon.png"
  ],
  "options_page": "settings.html"
}