Sky Works Banner Screenshot Extension

Screen capture of a banner on a webpage.

Cos'è Sky Works Banner Screenshot Extension?

Sky Works Banner Screenshot Extension è un'estensione di Chrome sviluppata da skyworksdigi, e la sua funzione principale è "Screen capture of a banner on a webpage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Sky Works Banner Screenshot Extension

Scarica i file di estensione Sky Works Banner Screenshot Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!

Informazioni di Base sull'Estensione

Nome Sky Works Banner Screenshot Extension Sky Works Banner Screenshot Extension
ID eljhhkkglmmemobnmcahanodlcbohipa
URL Ufficiale https://chromewebstore.google.com/detail/sky-works-banner-screensh/eljhhkkglmmemobnmcahanodlcbohipa
Descrizione Screen capture of a banner on a webpage.
Dimensione del File 15.56 KB
Conteggio Installazioni 147
Versione Corrente 2.4
Ultimo Aggiornamento 2018-08-09
Data di Pubblicazione 2018-08-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore skyworksdigi
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}