Sky Works Banner Screenshot Extension
Screen capture of a banner on a webpage.
Co je Sky Works Banner Screenshot Extension?
Sky Works Banner Screenshot Extension je rozšíření Chrome vyvinuté skyworksdigi, a jeho hlavní funkcí je „Screen capture of a banner on a webpage.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Sky Works Banner Screenshot Extension
Stáhněte si soubory rozšíření Sky Works Banner Screenshot Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Legals
...
Enjoy! Základní Informace o Rozšíření
| Název | |
| ID | eljhhkkglmmemobnmcahanodlcbohipa |
| Oficiální URL | https://chromewebstore.google.com/detail/sky-works-banner-screensh/eljhhkkglmmemobnmcahanodlcbohipa |
| Popis | Screen capture of a banner on a webpage. |
| Velikost souboru | 15.56 KB |
| Počet instalací | 147 |
| Aktuální Verze | 2.4 |
| Poslední Aktualizace | 2018-08-09 |
| Datum Vydání | 2018-08-09 |
| Hodnocení | 5.00/5 Celkem 1 Hodnocení |
| Vývojář | skyworksdigi |
| Typ Platby | free |
| Podporované Jazyky | 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
}
]
} | |