Screenshot Button

With one click, you can take screenshots of YouTube.

Screenshot Button là gì?

Screenshot Button là một tiện ích mở rộng Chrome được phát triển bởi arus, và tính năng chính của nó là "With one click, you can take screenshots of YouTube.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Screenshot Button

Tải xuống các tệp mở rộng Screenshot Button 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

                        After installing this extension, a button for taking screenshots will be added to the player of each video streaming site.
With a single click, you can take a screenshot of a live broadcast or video from a video streaming site.

◆Supported sites
・YouTube
・SPWN
・Z-aN
・Twitch
・OPENREC.tv
・SHOWROOM
・Mildom
・niconico live ( niconico video will be suppoted soon...)

◆Shortcut
  You can take a screenshot with "Ctrl + Alt + s" (default).
  You can set shortcut key on option page.

- ver1.0.0 Fixed a bug where the button was not displayed in Mildom.
- ver1.0.1 SPWN is now supported.
- ver1.0.2 Fixed a bug that prevented SPWN from taking pictures.
- ver1.0.3 English locale is now supported.
- ver1.0.4 Fixed a bug that prevented video titles from being retrieved on YouTube.
                Changed the format of the timestamp attached to the screenshot taken.
- ver1.0.5 Supports SPWN subdomains (*.spwn.jp) 
                * There is a possibility that it will not work well because it has not been tested in the actual environment
- ver1.0.6 niconico live is now supported.
- ver1.0.7 Added support for shortcut keys.
- ver1.0.8 Fixed a bug that caused display corruption on twitch.
- ver1.0.9 Adjusted display on YouTube.
- ver1.1.0 Fixed a bug in twitch where you could not get a capture from a button.
                   English display of option pages is now supported.
- ver1.1.1 Fixed a bug that the screenshot button was not displayed in SHOWROOM.
- ver1.1.2 Z-aN is now supported.
- ver1.2.0 It corresponds to the new specification of extension function of chrome. Functionality remains the same as the previous version.
- ver1.2.1Fixed a bug that option screen does not work.
- ver1.2.2 Fixed a bug that the screenshot button was not displayed in SHOWROOM.
- ver1.2.3 Fixed an issue where the buttons were misaligned on Z-aN.
- ver1.2.4 Corrected to include the shooting date and time in the file name of the screenshot taken.
                   Added support for chzzk.
- ver1.2.5 Fixed an issue where screenshots could not be taken on niconico live.
- ver1.2.6 Corrected the timestamp of screenshots being streamed on Twitch to be accurate.
                  Supports chzzk wide mode.

If you have any issues, please report them on our support page or review.

Source Code:https://github.com/arus307/screenshot-button                    

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

Tên Screenshot Button Screenshot Button
ID ahajpggnfmlmabdkmgijlkgoajjgkiln
URL Chính Thức https://chromewebstore.google.com/detail/screenshot-button/ahajpggnfmlmabdkmgijlkgoajjgkiln
Mô tả With one click, you can take screenshots of YouTube.
Kích Thước Tệp 1.34 MB
Số Lần Cài Đặt 2,513
Phiên Bản Hiện Tại 1.2.6
Cập Nhật Lần Cuối 2024-02-24
Ngày Phát Hành 2020-09-10
Đánh Giá 4.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển arus
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "ja",
    "version": "1.2.6",
    "manifest_version": 3,
    "homepage_url": "https:\/\/arus.me",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon.svg"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.openrec.tv\/*",
                "https:\/\/www.twitch.tv\/*",
                "https:\/\/www.mildom.com\/*",
                "https:\/\/spwn.jp\/*",
                "https:\/\/*.spwn.jp\/*",
                "https:\/\/live.nicovideo.jp\/*",
                "https:\/\/*.zan-live.com\/*",
                "https:\/\/www.showroom-live.com\/*",
                "https:\/\/chzzk.naver.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options\/options.html",
    "permissions": [
        "storage",
        "webNavigation",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*",
        "https:\/\/www.openrec.tv\/*",
        "https:\/\/www.twitch.tv\/*",
        "https:\/\/www.mildom.com\/*",
        "https:\/\/spwn.jp\/*",
        "https:\/\/*.spwn.jp\/*",
        "https:\/\/live.nicovideo.jp\/*",
        "https:\/\/*.zan-live.com\/*",
        "https:\/\/chzzk.naver.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' ; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/youtube.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.openrec.tv\/*"
            ],
            "js": [
                "lib\/jquery-3.5.1.slim.min.js",
                "js\/openrec.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.showroom-live.com\/*"
            ],
            "js": [
                "js\/showroom.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.mildom.com\/*"
            ],
            "js": [
                "js\/mildom.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "lib\/jquery-3.5.1.slim.min.js",
                "js\/twitch.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/spwn.jp\/*",
                "https:\/\/*.spwn.jp\/*"
            ],
            "js": [
                "js\/spwn.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/live.nicovideo.jp\/*"
            ],
            "js": [
                "js\/nicolive.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.zan-live.com\/*"
            ],
            "js": [
                "js\/zan.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        },
        {
            "matches": [
                "https:\/\/chzzk.naver.com\/*"
            ],
            "js": [
                "js\/chzzk.js",
                "js\/util.js",
                "js\/shared.js"
            ]
        }
    ]
}