Screenly : Screenshot & Screen Video Recorder

Record videos and take screnshots from your screen.

什麼是Screenly : Screenshot & Screen Video Recorder?

Screenly : Screenshot & Screen Video Recorder是由Screen Grabber開發的Chrome擴展程式,該擴展的主要功能是“Record videos and take screnshots from your screen.”。

擴展截圖

screenshot
screenshot
screenshot

下載Screenly : Screenshot & Screen Video Recorder擴展crx文件

下載Screenly : Screenshot & Screen Video Recorder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        🎥 Record
    ▸ Record your Desktop, current Tab or Camera only
    ▸ Include your voice in recording with Microphone option on
    ▸ Include your face in your video by embedding your webcam
    ▸ Choose video dimensions from 720p, 1080p or 4K
    ▸ Add drawing tool while tab recording

📷 Screen Capture
    ▸ Capture a screenshot of the page you visit, full page, selected area or visible part
    ▸ Capture a screenshot of your entire screen or a specific application window
    ▸ Capture visible part, entire screen or app window after delay                    

擴展基本資訊

名稱 Screenly : Screenshot & Screen Video Recorder Screenly : Screenshot & Screen Video Recorder
ID mjjhadigpbeaeddpdiongfakjaemflgl
官方網址 https://chromewebstore.google.com/detail/screenly-screenshot-scree/mjjhadigpbeaeddpdiongfakjaemflgl
簡介 Record videos and take screnshots from your screen.
檔案大小 626 KB
安裝次數 649
目前版本 2.1.0
更新時間 2024-02-23
上架時間 2022-02-14
評分 5.00/5 共 1 次評分
開發者 Screen Grabber
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Screenly : Screenshot & Screen Video Recorder",
    "version": "2.1.0",
    "manifest_version": 3,
    "description": "Record videos and take screnshots from your screen.",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_icon": "images\/icon-128.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+E"
            }
        },
        "pauseResumeRecording": {
            "description": "Pause\/Resume Recording",
            "suggested_key": {
                "default": "Alt+Shift+R"
            }
        },
        "startProcess": {
            "description": "Start Recording",
            "suggested_key": {
                "default": "Alt+Shift+S"
            }
        },
        "stopScreening": {
            "description": "Stop Recording",
            "suggested_key": {
                "default": "Alt+Shift+Q"
            }
        }
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "vendor\/jquery.min.js",
                "js\/main.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "recorder.html",
                "templates\/*",
                "css\/*",
                "fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html?settings",
    "permissions": [
        "activeTab",
        "desktopCapture",
        "tabCapture",
        "storage",
        "commands",
        "unlimitedStorage",
        "downloads",
        "offscreen"
    ],
    "host_permissions": [
        ""
    ]
}