Viewability Monitor

Highlights ads in your browser when viewability pixels fire on them.

什麼是Viewability Monitor?

Viewability Monitor是由Ziff Davis LLC開發的Chrome擴展程式,該擴展的主要功能是“Highlights ads in your browser when viewability pixels fire on them.”。

擴展截圖

screenshot

下載Viewability Monitor擴展crx文件

下載Viewability Monitor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The Viewability Monitor creates an overlay on each of your DFP ads as soon an activeview pixel is fired. Detailed information like MTOS and the ID of the ad is displayed in a dropdown. Click on each dropdown item to automatically scroll to the ad and highlight the corresponding overlay. 

Extension features:

 - Displays overlay when ads become viewable.
 - Records viewable ad information in clickable dropdown.

Change Log

1.2.0 
 - Added moat pixel monitor. The red overlays and red dashed boxes indicate moat pixel firing.  

1.2.1
 - Display number of seconds since doc ready event. 

1.2.2
 - Z-Index increased 

1.2.3
 - Add moat and activeView descriptors to overlay text.
 - Fix On/Off button issues.                    

擴展基本資訊

名稱 Viewability Monitor Viewability Monitor
ID ajdamildidhpclcbckldiacpgepjjhhl
官方網址 https://chrome.google.com/webstore/detail/viewability-monitor/ajdamildidhpclcbckldiacpgepjjhhl
簡介 Highlights ads in your browser when viewability pixels fire on them.
檔案大小 222 KB
安裝次數 535
目前版本 1.2.3
更新時間 2015-05-15
上架時間 2015-05-15
評分 5.00/5 共 7 次評分
開發者 Ziff Davis LLC
付費類型 free
擴展官網 http://www.ziffdavis.com
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Viewability Monitor",
    "short_name": "Viewability Monitor",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "Highlights ads in your browser when viewability pixels fire on them.",
    "author": "Shane Kerwin",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "webRequest",
        "",
        "webNavigation",
        "pageCapture",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "browseraction\/assets\/js\/jquery-1.11.1.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon48.png",
            "38": "icons\/icon48.png"
        },
        "default_title": "Viewability Monitor",
        "default_popup": "browseraction\/popup.html"
    }
}