Fanpage likes

Fanpage likes

This extension help you to get sharedposts

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "new.css"
      ],
      "js": [
        "jquery.js",
        "fb_getdata.js"
      ],
      "matches": [
        "*://www.facebook.com/*"
      ]
    },
    {
      "css": [
        "new.css"
      ],
      "js": [
        "jquery.js",
        "m_share.js"
      ],
      "matches": [
        "*://m.facebook.com/browse/*"
      ]
    },
    {
      "js": [
        "jquery.js",
        "content2.js"
      ],
      "matches": [
        "*://gg90052.github.io/*",
        "https://localhost:3000/"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "jquery.js",
        "yt_getdata.js"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "This extension help you to get sharedposts",
  "manifest_version": 3,
  "name": "Fanpage likes",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://www.facebook.com/*",
    "*://gg90052.github.io/*",
    "*://m.facebook.com/*"
  ],
  "version": "7.1.1"
}