Screenshot Extension (Open Source)

A browser extension that takes screenshots

Apa itu Screenshot Extension (Open Source)?

Screenshot Extension (Open Source) adalah ekstensi Chrome yang dikembangkan oleh Michael, dan fitur utamanya adalah "A browser extension that takes screenshots".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Screenshot Extension (Open Source)

Unduh file ekstensi Screenshot Extension (Open Source) 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 browser extension that takes full-page or partial screenshots!

- Hold the Option/Alt key and drag the mouse to create partial screenshots.
- Click the icon to create full-page screenshots.

Source code: https://github.com/lxieyang/screenshot-extension                    

Informasi Dasar Ekstensi

Nama Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
URL Resmi https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
Deskripsi A browser extension that takes screenshots
Ukuran File 58.05 KB
Jumlah Instalasi 149
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2020-11-20
Tanggal Publikasi 2020-11-18
Pengembang Michael
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/lxieyang/chrome-extension-boilerplate-react
URL Halaman Bantuan https://github.com/lxieyang/chrome-extension-boilerplate-react
URL Halaman Kebijakan Privasi https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A browser extension that takes screenshots",
    "version": "1.0.0",
    "name": "Screenshot Extension (Open Source)",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon-34.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "downloads",
        "",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "cross-32.png"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}