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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
} | |