Screenshot Extension (Open Source)

A browser extension that takes screenshots

什么是Screenshot Extension (Open Source)?

Screenshot Extension (Open Source)是由Michael开发的Chrome扩展程序,该扩展的主要功能是“A browser extension that takes screenshots”。

扩展截图

screenshot

下载Screenshot Extension (Open Source)扩展crx文件

下载Screenshot Extension (Open Source)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
官方URL https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
简介 A browser extension that takes screenshots
文件大小 58.05 KB
安装次数 149
当前版本 1.0.0
更新时间 2020-11-20
上架时间 2020-11-18
开发者 Michael
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/lxieyang/chrome-extension-boilerplate-react
帮助页面URL https://github.com/lxieyang/chrome-extension-boilerplate-react
隐私政策页面URL https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
支持的语言 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'"
}