ClicSpy

ClicSpy

Herramienta para filtrar anuncios en Facebook Ads Library Filtra anuncios por cantidad de duplicadas Carga automáticamente los…

Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": {
      "32": "images/icon.png"
    },
    "default_name": "ClicSpy",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "css": [
        "./fontawesome.css",
        "./country.css",
        "style.css",
        "./tippy.css",
        "./category.css"
      ],
      "js": [
        "./lib/jquery.js",
        "./countries2.js",
        "./popper.js",
        "./lib/tippy.js",
        "initialize.js",
        "ContentScript.js",
        "./lib/FileSaver.js"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ]
    },
    {
      "js": [
        "dashboard.js"
      ],
      "matches": [
        "https://clicspy.com/dashboard/*"
      ]
    }
  ],
  "host_permissions": [
    "https://tueducaciondigital.site/",
    "https://clicspy.com/",
    "https://fonts.googleapis.com/",
    "https://www.facebook.com/ads/library/"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3,
  "name": "ClicSpy",
  "permissions": [
    "storage",
    "activeTab"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.9",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "*"
      ]
    }
  ]
}