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
官方網址 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'"
}