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
Eメール [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'"
}