Color Themes for Facebook

Color Themes for Facebook

Color Themes for Facebook

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "inject.js"
      ],
      "match_about_blank": true,
      "matches": [
        "https://www.facebook.com/*",
        "https://www.messenger.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "likes.js"
      ],
      "match_about_blank": true,
      "matches": [
        "https://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "options_page": "settings.html",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com https://*.google-analytics.com https://*.googleapis.com; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "/styles/*.css"
  ],
  "version": "1.1.9"
}