Immediate Shot
Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.
什么是Immediate Shot?
Immediate Shot是由Go Noji开发的Chrome扩展程序,该扩展的主要功能是“Immediate Shot is a Chrome Extension that takes screenshots quickly with one click.”。
扩展截图
下载Immediate Shot扩展crx文件
下载Immediate Shot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Download screenshots with one click According to the situation, ・ Capture the full screen in perfect resolution -Capture the whole screen quickly anyway ・ Capture only the displayed area You can set the selection in advance and also control the file name to download. UPDATE(v0.1.0): Fixed a bug where active tabs were not being captured when multiple windows were open. UPDATE (v0.1.1): You can now set a config value to deal with the error that occurs when doing a fast capture in Chrome 92 or later. Added support for content that cannot be displayed without scrolling the page.
扩展基本信息
名称 | Immediate Shot |
ID | lopfaoacjcbbcfhmjofbfgfmdllclhln |
官方URL | https://chromewebstore.google.com/detail/immediate-shot/lopfaoacjcbbcfhmjofbfgfmdllclhln |
简介 | Immediate Shot is a Chrome Extension that takes screenshots quickly with one click. |
文件大小 | 52.35 KB |
安装次数 | 77 |
当前版本 | 0.1.1 |
更新时间 | 2021-08-24 |
上架时间 | 2020-02-28 |
评分 | 5.00/5 共1次评分 |
开发者 | Go Noji |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Go-Noji/Immediate-Shot |
支持的语言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Immediate Shot", "version": "0.1.1", "description": "__MSG_msg_desc__", "default_locale": "en", "background": { "persistent": false, "scripts": [ "background.bundle.js" ] }, "content_scripts": [ { "js": [ "page.bundle.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": { "128": "128.png" } }, "icons": { "128": "128.png", "48": "48.png", "32": "32.png" }, "permissions": [ "activeTab", "tabs", "storage", "background", "contextMenus", "downloads" ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2 } |