Sky Works Banner Screenshot Extension

Screen capture of a banner on a webpage.

Sky Works Banner Screenshot Extensionคืออะไร?

Sky Works Banner Screenshot Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย skyworksdigi และคุณลักษณะหลักของมันคือ "Screen capture of a banner on a webpage."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sky Works Banner Screenshot Extension

ดาวน์โหลดไฟล์ส่วนขยาย Sky Works Banner Screenshot Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
        }
    ]
}