Ad Library Helper

Ad Library Helper

The extension makes the ability to work with Ad Library more convenient and faster, displays additional information on ads.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ad Library Helper",
  "description": "The extension makes the ability to work with Ad Library more convenient and faster, displays additional information on ads.",
  "version": "2.0",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/ads/library/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "css": [
        "styles.css"
      ]
    },
    {
      "world": "MAIN",
      "js": [
        "./static/js/inject.js"
      ],
      "matches": [
        "https://www.facebook.com/"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.facebook.com/"
      ],
      "js": [
        "./static/js/ads.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}