Viewability Monitor

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

Viewability Monitor क्या है?

Viewability Monitor Ziff Davis LLC द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights ads in your browser when viewability pixels fire on them."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Viewability Monitor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}