NEU Ad Observer
A browser extension to share data about your social feed with researchers and journalists to increase transparency.
Cos'è NEU Ad Observer?
NEU Ad Observer è un'estensione di Chrome sviluppata da M. Ali (Northeastern University), e la sua funzione principale è "A browser extension to share data about your social feed with researchers and journalists to increase transparency.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NEU Ad Observer
Scarica i file di estensione NEU Ad Observer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A browser extension to capture users' Facebook ads and shares with academic researchers to understand the online advertising ecosystem.
Informazioni di Base sull'Estensione
Nome | NEU Ad Observer |
ID | dhfenkmankbfppegdgejpehmajcfoich |
URL Ufficiale | https://chromewebstore.google.com/detail/neu-ad-observer/dhfenkmankbfppegdgejpehmajcfoich |
Descrizione | A browser extension to share data about your social feed with researchers and journalists to increase transparency. |
Dimensione del File | 387 KB |
Conteggio Installazioni | 49 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2021-10-27 |
Data di Pubblicazione | 2021-04-19 |
Sviluppatore | M. Ali (Northeastern University) |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "homepage_url": "https:\/\/adobserver.org", "background": { "scripts": [ "background\/bundle.js" ] }, "icons": { "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "browser_action": { "default_popup": "toolbar\/index.html", "default_icon": "assets\/icon128.png", "default_title": "NEU Ad Observer" }, "web_accessible_resources": [ "webpage\/*" ], "name": "NEU Ad Observer", "short_name": "NEU Ad Observer", "description": "A browser extension to share data about your social feed with researchers and journalists to increase transparency.", "version": "1.2.1", "version_name": "1.2.1", "content_scripts": [ { "js": [ "preload\/bundle.js" ], "matches": [ "*:\/\/*.facebook.com\/*" ], "exclude_globs": [ "*:\/\/*.facebook.com\/ads\/archive*", "*:\/\/*.facebook.com\/ads\/library*" ], "run_at": "document_start" }, { "js": [ "content\/bundle.js" ], "matches": [ "*:\/\/*.facebook.com\/*" ], "exclude_globs": [ "*:\/\/*.facebook.com\/ads\/archive*", "*:\/\/*.facebook.com\/ads\/library*" ], "run_at": "document_start" } ], "permissions": [ "storage", "unlimitedStorage" ] } |