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
官方網址 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
電子郵箱 [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": []
}