Snapchat web

Snapchat web

This extension allows you to use snapchat web version on firefox.

Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.0.3",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "*://*.snapchat.com/*",
    "*://*.sc-corp.net/*"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.snapchat.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "scripts/inject.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{4cdc299c-0eb3-450b-afc6-b2159744fdf7}"
    }
  }
}