Screenshotting Master - Full Page Capture

Use Screenshotting Master - Full Page Capture for a simple one click

Screenshotting Master - Full Page Captureとは何ですか?

Screenshotting Master - Full Page Captureはkevinlawson746によって開発されたChromeの拡張機能で、その主な機能は「Use Screenshotting Master - Full Page Capture for a simple one click」です。

拡張機能のスクリーンショット

screenshot
screenshot

Screenshotting Master - Full Page Capture拡張機能のCRXファイルをダウンロード

Screenshotting Master - Full Page Capture拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A Simple and easy Screenshotting extension to capture screenshots from any web page. Now you can take screenshots in three different ways using this Free Extension.

Features: 
☆ Full page Screenshot - Capture the entire page without the hassle of scrolling through the page.
☆ Selected Area Screenshot - Capture a selective area of the visible screen.
☆ Visible Area Screenshot - Capture only the currently visible screen.

Shortcut Keys: 
Alt + P - Full Page Screenshot
Alt + L - Selected Area Screenshot
Alt + V - Visible Area Screenshot

Highlights: 
★All in one Screenshotting Extension.
★Lightweight compared to other screenshotting extensions.
★Free to use.🙂

updates:
0.0.3 - minor update                    

拡張機能の基本情報

名前 Screenshotting Master - Full Page Capture Screenshotting Master - Full Page Capture
ID aiaplgbkhiadmidofbfgcemildehlnen
公式URL https://chrome.google.com/webstore/detail/screenshotting-master-ful/aiaplgbkhiadmidofbfgcemildehlnen
説明 Use Screenshotting Master - Full Page Capture for a simple one click
ファイルサイズ 368 KB
インストール数 2,000
現在のバージョン 0.0.4
最終更新日 2022-07-24
公開日 2022-04-13
評価 3.63/5 合計 8 レビュー
開発者 kevinlawson746
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenshotting Master - Full Page Capture",
    "version": "0.0.4",
    "description": "Use Screenshotting Master - Full Page Capture for a simple one click",
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "downloads",
        "scripting"
    ],
    "action": {
        "default_icon": "icon128.png",
        "default_title": "Screenshot",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "b.js"
    },
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        ""
    ],
    "commands": {
        "fullPage": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Take fullpage screenshot"
        },
        "visibleArea": {
            "suggested_key": {
                "default": "Alt+V"
            },
            "description": "Visible page screenshot"
        },
        "selectedArea": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Selected Area screenshot"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "innerScreenshotContent.js",
                "screenshot.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 3,
    "web_accessible_resources": []
}