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."입니다.

확장 프로그램 스크린샷

screenshot

NEU Ad Observer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 NEU Ad Observer NEU Ad Observer
ID dhfenkmankbfppegdgejpehmajcfoich
공식 URL 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"
    ]
}