NEU Ad Observer

A browser extension to share data about your social feed with researchers and journalists to increase transparency.

Co to jest NEU Ad Observer?

NEU Ad Observer to rozszerzenie Chrome opracowane przez M. Ali (Northeastern University), a jego główną funkcją jest „A browser extension to share data about your social feed with researchers and journalists to increase transparency.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NEU Ad Observer

Pobierz pliki rozszerzeń NEU Ad Observer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A browser extension to capture users' Facebook ads and shares with academic researchers to understand the online advertising ecosystem.                    

Podstawowe informacje o rozszerzeniu

Nazwa NEU Ad Observer NEU Ad Observer
ID dhfenkmankbfppegdgejpehmajcfoich
Oficjalny URL https://chromewebstore.google.com/detail/neu-ad-observer/dhfenkmankbfppegdgejpehmajcfoich
Opis A browser extension to share data about your social feed with researchers and journalists to increase transparency.
Rozmiar pliku 387 KB
Liczba instalacji 49
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2021-10-27
Data Publikacji 2021-04-19
Deweloper M. Ali (Northeastern University)
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}