Socially Browse

Socially Browse

Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Socially Browse",
  "version": "1.02",
  "description": "Socially Browse allows comments on any webpage about the webpage. No feedback box? Want advice? Use Socially Browse!",
  "background": {
    "scripts": [
      "jquery.js",
      "backgroundScript.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://sociallybrowse.com/*; object-src 'self'",
  "permissions": [
    "tabs",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_title": "Socially Browse",
    "default_popup": "popup.html",
    "default_icon": {
      "32": "socially_browse.png"
    }
  }
}