Share on Rabbit

Share on Rabbit

The best way to watch tv, movies, Netflix and more with friends

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Share on Rabbit",
  "description": "The best way to watch tv, movies, Netflix and more with friends",
  "version": "1.0.5",
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": true
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3lX/HcSoInKtqID2avbzmi4Yqr6BusYNaROpNeUnSluP3L2+zfLPBQaA4CYqhB3YuU7QikYtDkIEK5SPrlKux/L3fVQRV1Xh2TStkR3rENIDCaxY+wSMhsq02XBjPAZ6pzz+4ZLkZozn1BHf//WUiY8/bH/sYOvCtXu9xZx1RahRA+4TqGqCYbMI1locmMBys6xwM0TRSFRAzhMVdSDv1uv9lq4TizsbJ8Oqmwn7HCUwJkAwFpxntdsNWQlBOirapLqvuNlpVcM5kTKTHSO1znHXOu0m7sDXlWxRoTuQTA2W0HHg0CxlBpvhZ4robhIjJnMTw11iFsTzDrFSoSlr9wIDAQAB",
  "browser_action": {
    "default_title": "Share on Rabbit",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/rabbit-16px.png",
    "19": "images/rabbit-19px.png",
    "32": "images/rabbit-32px.png",
    "48": "images/rabbit-48px.png",
    "128": "images/rabbit-128px.png"
  },
  "permissions": [
    "tabCapture",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.rabb.it/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.rabb.it/*"
      ],
      "js": [
        "presence.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  }
}