Screenshot Extension (Open Source)

A browser extension that takes screenshots

Cos'è Screenshot Extension (Open Source)?

Screenshot Extension (Open Source) è un'estensione di Chrome sviluppata da Michael, e la sua funzione principale è "A browser extension that takes screenshots".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Screenshot Extension (Open Source)

Scarica i file di estensione Screenshot Extension (Open Source) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
URL Ufficiale https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
Descrizione A browser extension that takes screenshots
Dimensione del File 58.05 KB
Conteggio Installazioni 149
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-11-20
Data di Pubblicazione 2020-11-18
Sviluppatore Michael
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lxieyang/chrome-extension-boilerplate-react
URL della Pagina di Aiuto https://github.com/lxieyang/chrome-extension-boilerplate-react
URL della Pagina della Politica sulla Privacy https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
Lingue Supportate 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'"
}