Social Media Control

Social Media Control

Control Facebook™ logins and sessions on the browser. Automatic sync between computers. Access monitoring and sessions duration.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Social Media Control",
  "short_name": "Social Ctrl",
  "version": "2.1.0",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "author": "NavegaTV",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "utils.js",
        "main.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "browser_action": {
    "default_icon": {
      "19": "images/fb-icon-19.png",
      "38": "images/fb-icon-48.png"
    },
    "default_title": "Facebook"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}