NEU Ad Observer
A browser extension to share data about your social feed with researchers and journalists to increase transparency.
什麼是NEU Ad Observer?
NEU Ad Observer是由M. Ali (Northeastern University)開發的Chrome擴展程式,該擴展的主要功能是“A browser extension to share data about your social feed with researchers and journalists to increase transparency.”。
擴展截圖
下載NEU Ad Observer擴展crx文件
下載NEU Ad Observer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A browser extension to capture users' Facebook ads and shares with academic researchers to understand the online advertising ecosystem.
擴展基本資訊
名稱 | NEU Ad Observer |
ID | dhfenkmankbfppegdgejpehmajcfoich |
官方網址 | https://chromewebstore.google.com/detail/neu-ad-observer/dhfenkmankbfppegdgejpehmajcfoich |
簡介 | A browser extension to share data about your social feed with researchers and journalists to increase transparency. |
檔案大小 | 387 KB |
安裝次數 | 49 |
目前版本 | 1.2.1 |
更新時間 | 2021-10-27 |
上架時間 | 2021-04-19 |
開發者 | M. Ali (Northeastern University) |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |