rabbithole
Digs down into the nasty details of your ad units
rabbithole란 무엇입니까?
rabbithole은(는) Jason Priebe에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Digs down into the nasty details of your ad units"입니다.
확장 프로그램 스크린샷
rabbithole 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
As a publisher on the web today, you may have a love-hate relationship with ad networks. On one hand, those ad networks help to pay the bills. But on the other hand, their questionable coding abilities, poor security, and dubious business practices expose you to all sorts of problems. Our team has spent countless hours dissecting the DOM to try to track down offending ads. This is tedious work, especially when an ad call gets bounced from network to network, creating an extremely complex DOM of nested IFRAMEs. rabbithole is designed to streamline this process. Using a CSS selector provided by you, it identifies the top-level DOM elements for your ad units. It then recursively descends those elements, building a simpler object model for you to analyze. * simplifies the identification and interpretation of the ad-related portion of the DOM * "compresses" the tree by skipping past DOM elements that aren't really important and only tracking select properties * makes off-site objects easily identifiable * tries to identify pixel trackers * tries to identify the DOM elements that are most likely the ad creative itself * attempts to keep track of a "network path" so you can see the whole ad chain where ads are coming from; this is a work in progress * computes statistics like the number of scripts and iframes loaded beneath each node in the tree In order for rabbithole to work with your site, you need to give it a CSS selector that will capture all the top-level DOM elements of your ad units (and is specific enough to *not* capture non-ad-unit elements). For example, if you look at the ad tags on http://slashdot.org/, you will see that they all have IDs like "div-gpt-ad-728x90_a" and "div-gpt-ad-300x250_a". You can capture them all with a selector like [id*='div-gpt-ad'] Once you have your selector, use the options dialog to configure rabbithole. You can open it either from the extensions page in chrome, or by clicking on the gear icon in the rabbithole popup window. If you have a rabbithole window open when you change the CSS selector, you'll need to close rabbithole and reopen it to get it to rescan your page's DOM. Source: https://github.com/jpriebe/rabbithole
확장 프로그램 기본 정보
이름 | rabbithole |
ID | cpffcejbmndcplijjaiflmkgoembjnig |
공식 URL | https://chromewebstore.google.com/detail/rabbithole/cpffcejbmndcplijjaiflmkgoembjnig |
설명 | Digs down into the nasty details of your ad units |
파일 크기 | 53.23 KB |
설치 횟수 | 105 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2017-05-02 |
출시 날짜 | 2017-05-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Jason Priebe |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "rabbithole", "description": "Digs down into the nasty details of your ad units", "version": "1.0.1", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "tabs", "activeTab", "webNavigation", "storage" ], "browser_action": { "default_title": "rabbithole: dig deep into ad units" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "match_about_blank": true, "matches": [ " |