AdLinks
View Your AdLinks Data in Facebook Ads Manager
Was ist AdLinks?
AdLinks ist eine Chrome-Erweiterung, die von developer entwickelt wurde, und ihr Hauptmerkmal ist "View Your AdLinks Data in Facebook Ads Manager".
Erweiterungsscreenshots
AdLinks-Erweiterungs-CRX-Datei herunterladen
Laden Sie AdLinks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension will take your AdLinks data and place it inside Facebook Ads Manager. You will then be able to see Facebook's original data side by side with your AdLinks data.
Grundlegende Informationen zur Erweiterung
Name | AdLinks |
ID | iciagcnafhifgpceafnpmnhmloecfjbe |
Offizielle URL | https://chromewebstore.google.com/detail/adlinks/iciagcnafhifgpceafnpmnhmloecfjbe |
Beschreibung | View Your AdLinks Data in Facebook Ads Manager |
Dateigröße | 40.58 KB |
Installationsanzahl | 47 |
Aktuelle Version | 0.0.0.27 |
Letztes Update | 2023-08-23 |
Veröffentlichungsdatum | 2022-04-25 |
Entwickler | developer |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.adlinks.io |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "permissions": [ "storage", "tabs" ], "optional_permissions": [], "host_permissions": [], "name": "AdLinks", "options_ui": { "page": "options.html", "open_in_tab": false }, "background": { "service_worker": "background.js" }, "description": "View Your AdLinks Data in Facebook Ads Manager", "version": "0.0.0.27", "icons": { "16": "\/images\/adlinks-logo16.png", "48": "\/images\/adlinks-logo48.png", "128": "\/images\/adlinks-logo128.png" }, "action": { "default_icon": { "16": "\/images\/adlinks-logo16.png", "48": "\/images\/adlinks-logo48.png", "128": "\/images\/adlinks-logo128.png" }, "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/business.facebook.com\/adsmanager\/*", "https:\/\/adsmanager.facebook.com\/*" ], "css": [ "main.css" ], "js": [ "content.js" ] } ] } |