Screenshot Extension (Open Source)

A browser extension that takes screenshots

Vad är Screenshot Extension (Open Source)?

Screenshot Extension (Open Source) är en Chrome-tillägg utvecklad av Michael, och dess huvudfunktion är "A browser extension that takes screenshots".

Tilläggsskärmbilder

screenshot

Ladda ner Screenshot Extension (Open Source)-förlängningens CRX-fil

Ladda ner Screenshot Extension (Open Source)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
Officiell webbadress https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
Beskrivning A browser extension that takes screenshots
Filstorlek 58.05 KB
Antal Installationer 149
Aktuell Version 1.0.0
Senast Uppdaterad 2020-11-20
Publiceringsdatum 2020-11-18
Utvecklare Michael
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lxieyang/chrome-extension-boilerplate-react
Hjälpsida URL https://github.com/lxieyang/chrome-extension-boilerplate-react
URL till Sekretesspolicy Sidan https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
Stödda Språk 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'"
}