Escape Your Bubble

Escape Your Bubble

Escape Your Bubble helps you better understand and accept others.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "30",
  "name": "Escape Your Bubble",
  "short_name": "Escape Your Bubble",
  "version": "0.0.0.7",
  "description": "Escape Your Bubble helps you better understand and accept others.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.facebook.com/*"
      ],
      "js": [
        "inject.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "main.js",
    "welcome.js"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icon19.png",
      "38": "icon38.png"
    },
    "default_popup": "popup.html",
    "default_title": "EscapeYourBubble"
  },
  "externally_connectable": {
    "matches": [
      "*://*.escapeyourbubble.com/*",
      "http://localhost:3000/*"
    ]
  },
  "permissions": [
    "*://www.facebook.com/*",
    "storage"
  ]
}