Lightweight Screenshot

Take screenshots. Also works for full page and custom-size screenshots.

Apa itu Lightweight Screenshot?

Lightweight Screenshot adalah ekstensi Chrome yang dikembangkan oleh Adam Feor, dan fitur utamanya adalah "Take screenshots. Also works for full page and custom-size screenshots.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Lightweight Screenshot

Unduh file ekstensi Lightweight Screenshot dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        A simple screenshot extension for Chrome. Supports taking screenshots of the current window, of an entire page (scrolling) and of a custom area.                    

Informasi Dasar Ekstensi

Nama Lightweight Screenshot Lightweight Screenshot
ID eapeifgbfommamnclhbppicejicnpooc
URL Resmi https://chromewebstore.google.com/detail/lightweight-screenshot/eapeifgbfommamnclhbppicejicnpooc
Deskripsi Take screenshots. Also works for full page and custom-size screenshots.
Ukuran File 39.4 KB
Jumlah Instalasi 478
Versi Saat Ini 1.1
Terakhir Diperbarui 2018-04-29
Tanggal Publikasi 2018-04-29
Penilaian 4.00/5 Total 5 Penilaian
Pengembang Adam Feor
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lightweight Screenshot",
    "description": "Take screenshots. Also works for full page and custom-size screenshots.",
    "version": "1.1",
    "icons": {
        "19": "images\/monitoriconsmall.png",
        "48": "images\/monitoricon48.png",
        "128": "images\/monitoricon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/cus.png",
        "image\/vis.png",
        "images\/full.png",
        "images\/check.png",
        "images\/cross.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/monitoriconsmall.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "",
        "downloads"
    ]
}