TxtSync - SMS Notifications

TxtSync - SMS Notifications

Easily send and recieve text messages from within your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "10.5.5",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'unsafe-inline' https://stats.pusher.com;  object-src 'self'",
  "externally_connectable": {
    "matches": [
      "*://*.txtsync.com/*",
      "*://localhost/*"
    ]
  },
  "background": {
    "page": "background/index.html",
    "resources": [
      "background/runtime.js",
      "background/polyfills.js",
      "background/styles.js",
      "background/main.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "content-script/assets/fonts/fontawesome/*"
  ],
  "browser_action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/CloudIcon-48.png",
      "128": "images/CloudIcon-128.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "browser-action/index.html"
  },
  "permissions": [
    "nativeMessaging",
    "notifications",
    "storage",
    "tabs"
  ]
}