Sky Works Banner Screenshot Extension

Screen capture of a banner on a webpage.

What is Sky Works Banner Screenshot Extension?

Sky Works Banner Screenshot Extension is a Chrome extension developed by skyworksdigi, and its main feature is "Screen capture of a banner on a webpage.".

Extension Screenshots

screenshot
screenshot

Download Sky Works Banner Screenshot Extension Extension CRX File

Download Sky Works Banner Screenshot Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Use this extension to screenshot banners from:  
        
   1. The internal Sky Works Development Banner Preview App          
   2. Google Double Click Dynamic Creative Preview                         

To create a screenshot the whole banner must be visible. 

Benefits:

   1. Multiple banners can be captured at once as separate files   
   2. Automatic file naming with banner size included



Sky Works Digital Team

When running banners on Local Server all the elements of the creative need to be situated in a div element with id 'container', e.g. 

            
Canvas Element
Legals
...
Enjoy!

Extension Basic Information

Name Sky Works Banner Screenshot Extension Sky Works Banner Screenshot Extension
ID eljhhkkglmmemobnmcahanodlcbohipa
Official URL https://chromewebstore.google.com/detail/sky-works-banner-screensh/eljhhkkglmmemobnmcahanodlcbohipa
Description Screen capture of a banner on a webpage.
File Size 15.56 KB
Installation Count 147
Current Version 2.4
Last Updated 2018-08-09
Publish Date 2018-08-09
Rating 5.00/5 Total 1 Ratings
Developer skyworksdigi
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sky Works Banner Screenshot Extension",
    "description": "Screen capture of a banner on a webpage.",
    "version": "2.4",
    "manifest_version": 2,
    "author": "Evgeniya Mircheva @ Sky Works",
    "icons": {
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon128.png",
        "default_title": "Screenshot!"
    },
    "permissions": [
        "activeTab",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}