AdStudy

Helps a user collect and see their Facebook information.

AdStudy란 무엇입니까?

AdStudy은(는) giridhariv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps a user collect and see their Facebook information."입니다.

확장 프로그램 스크린샷

screenshot

AdStudy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This tool, developed as part of a research study at Northeastern University, lets users see what information Facebook has about them.
It determines user information by looking for certain ads that we run.
The tool only sends back to the server that information that you are willing to share, and stores even this information only in anonymized form.
The tool does not store any personally identifying information about you.                    

확장 프로그램 기본 정보

이름 AdStudy AdStudy
ID kcglaihdabccecndbdhoijodgkomaojp
공식 URL https://chrome.google.com/webstore/detail/adstudy/kcglaihdabccecndbdhoijodgkomaojp
설명 Helps a user collect and see their Facebook information.
파일 크기 1.09 MB
설치 횟수 25
현재 버전 0.0.0.8
최근 업데이트 2018-09-10
출시 날짜 2018-09-10
개발자 giridhariv
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AdStudy",
    "version": "0.0.0.8",
    "devtools_page": "devtools.html",
    "description": "Helps a user collect and see their Facebook information.",
    "background": {
        "scripts": [
            "polyFill.js",
            "thirdParty\/jquery-1.12.4.js",
            "serverUtils.js",
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "48": "icons\/border-48.png",
        "128": "icons\/border-128.png"
    },
    "browser_action": {
        "default_popup": "defaultPopup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "declarativeContent",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/"
            ],
            "js": [
                "polyFill.js",
                "thirdParty\/jquery-1.12.4.js",
                "thirdParty\/jquery-ui-1.12.1.custom\/jquery-ui.js",
                "parsinghelpers.js",
                "adCollectionUtils.js",
                "adchecker.js",
                "useralert.js"
            ],
            "css": [
                "css\/jquery-ui.css",
                "css\/button_style.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/?*"
            ],
            "js": [
                "polyFill.js",
                "thirdParty\/jquery-1.12.4.js",
                "thirdParty\/jquery-ui-1.12.1.custom\/jquery-ui.js",
                "parsinghelpers.js",
                "adCollectionUtils.js",
                "adchecker.js",
                "useralert.js"
            ],
            "css": [
                "css\/jquery-ui.css",
                "css\/button_style.css"
            ]
        },
        {
            "js": [
                "polyFill.js",
                "thirdParty\/jquery-1.12.4.js",
                "getAdsPreferences.js"
            ],
            "matches": [
                "http:\/\/www.facebook.com\/ads\/preferences*",
                "https:\/\/www.facebook.com\/ads\/preferences*"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "polyFill.js",
                "thirdParty\/jquery-1.12.4.js",
                "thirdParty\/jquery-ui-1.12.1.custom\/jquery-ui.js",
                "parsinghelpers.js",
                "sanitycheck.js"
            ],
            "css": [
                "css\/jquery-ui.css",
                "css\/button_style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "xhrOverloadButtons.js"
    ]
}