Sky Works Banner Screenshot Extension

Screen capture of a banner on a webpage.

Sky Works Banner Screenshot Extension란 무엇입니까?

Sky Works Banner Screenshot Extension은(는) skyworksdigi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Screen capture of a banner on a webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Sky Works Banner Screenshot Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!

확장 프로그램 기본 정보

이름 Sky Works Banner Screenshot Extension Sky Works Banner Screenshot Extension
ID eljhhkkglmmemobnmcahanodlcbohipa
공식 URL https://chromewebstore.google.com/detail/sky-works-banner-screensh/eljhhkkglmmemobnmcahanodlcbohipa
설명 Screen capture of a banner on a webpage.
파일 크기 15.56 KB
설치 횟수 147
현재 버전 2.4
최근 업데이트 2018-08-09
출시 날짜 2018-08-09
평점 5.00/5 총 1 개의 평점
개발자 skyworksdigi
결제 유형 free
지원되는 언어 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
        }
    ]
}