GetHookd.AI Extension

GetHookd.AI Extension

Saving Ads From Meta Ads Library

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GetHookd.AI Extension",
  "description": "Saving Ads From Meta Ads Library",
  "version": "1.0.3",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "host_permissions": [
    "https://*.facebook.com/ads/*",
    "https://*.gethookd.ai/*"
  ],
  "content_scripts": [
    {
      "world": "MAIN",
      "js": [
        "fb_ad_extractor.js"
      ],
      "matches": [
        "https://*.facebook.com/ads/*",
        "https://*.gethookd.ai/*",
        "*://localhost/*"
      ],
      "run_at": "document_end"
    },
    {
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/moment.js",
        "content.js"
      ],
      "css": [
        "css/styles.css"
      ],
      "matches": [
        "https://www.facebook.com/ads/library/*",
        "*://localhost/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  }
}