Pintreel fb Tool

Pintreel fb Tool

Get user id and group id by pintreel

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pintreel fb Tool",
  "version": "1.0",
  "description": "Get user id and group id by pintreel",
  "homepage_url": "http://pintreel.cn/",
  "browser_action": {
    "default_popup": "/elements/html/popup.html",
    "default_icon": {
      "16": "pintreel-16.png"
    }
  },
  "icons": {
    "16": "pintreel-16.png",
    "32": "pintreel-32.png",
    "48": "pintreel-48.png",
    "128": "pintreel-128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.facebook.com https://web.facebook.com; object-src 'self'",
  "permissions": [
    "https://web.facebook.com/*",
    "tabs",
    "https://www.facebook.com/"
  ],
  "content_scripts": [
    {
      "js": [
        "/elements/js/jquery-3.3.1.js",
        "/main/js/content.js",
        "/contents/wmessage/html/content.css"
      ],
      "matches": [
        "https://web.facebook.com/*"
      ]
    }
  ],
  "background": {
    "page": "/background/html/background.html"
  },
  "web_accessible_resources": [
    "/elements/js/jquery-3.3.1.js",
    "/contents/wmessage/js/main.js",
    "/contents/wmessage/html/content.css"
  ]
}