Screenshot Extension (Open Source)

A browser extension that takes screenshots

Screenshot Extension (Open Source) là gì?

Screenshot Extension (Open Source) là một tiện ích mở rộng Chrome được phát triển bởi Michael, và tính năng chính của nó là "A browser extension that takes screenshots".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Screenshot Extension (Open Source)

Tải xuống các tệp mở rộng Screenshot Extension (Open Source) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Screenshot Extension (Open Source) Screenshot Extension (Open Source)
ID hmkbkbpdnembpeadgpcmjekihjmckdjh
URL Chính Thức https://chromewebstore.google.com/detail/screenshot-extension-open/hmkbkbpdnembpeadgpcmjekihjmckdjh
Mô tả A browser extension that takes screenshots
Kích Thước Tệp 58.05 KB
Số Lần Cài Đặt 149
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-11-20
Ngày Phát Hành 2020-11-18
Nhà Phát Triển Michael
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lxieyang/chrome-extension-boilerplate-react
URL Trang Trợ Giúp https://github.com/lxieyang/chrome-extension-boilerplate-react
URL Trang Chính Sách Bảo Mật https://github.com/lxieyang/lxieyang.github.io/wiki/Chrome-Extension-Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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'"
}