Bid view

bid view by district m

Bid view란 무엇입니까?

Bid view은(는) district m에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "bid view by district m"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension displays header bidding debug information for the district m Header Wrapper and Prebid versions 0.34 to 1.0+.                    

확장 프로그램 기본 정보

이름 Bid view Bid view
ID pilgbiajggeomijdkoaplkgnlbongeok
공식 URL https://chrome.google.com/webstore/detail/bid-view/pilgbiajggeomijdkoaplkgnlbongeok
설명 bid view by district m
파일 크기 614 KB
설치 횟수 543
현재 버전 2.2
최근 업데이트 2018-07-23
출시 날짜 2018-07-23
평점 5.00/5 총 5 개의 평점
개발자 district m
결제 유형 free
확장 프로그램 웹 사이트 https://districtm.net/
개인정보 보호 정책 페이지 URL https://districtm.net/en/page/data-and-privacy-policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bid view",
    "description": "bid view by district m",
    "version": "2.2",
    "background": {
        "persistent": true,
        "scripts": [
            "event.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking",
        "background",
        "storage",
        "activeTab"
    ],
    "icons": {
        "128": "dm-icon.png"
    },
    "page_action": {
        "default_title": "bid view by district m",
        "default_icon": "dm-icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "dm-icon.png",
        "bidview-icon-white.png"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self' ; unsafe-inline"
}