AdStudy
Helps a user collect and see their Facebook information.
AdStudy क्या है?
AdStudy giridhariv द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps a user collect and see their Facebook information."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AdStudy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |