Screenshot
Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.
什麼是Screenshot?
Screenshot是由BrowserNative開發的Chrome擴展程式,該擴展的主要功能是“Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.”。
擴展截圖
下載Screenshot擴展crx文件
下載Screenshot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Users can select screenshot file format (PNG or JPEG) from the Options. After capturing the screenshot, extension saves it. You can opt to see it in a new tab. Extremely fast, light-weight and privacy friendly extension by BrowserNative.
擴展基本資訊
名稱 | Screenshot |
ID | mafopchedjkbgkpbbnbgifaolempmdgh |
官方網址 | https://chromewebstore.google.com/detail/screenshot/mafopchedjkbgkpbbnbgifaolempmdgh |
簡介 | Quickly take screenshot of current tab. Keyboard Commnd: Alt+P. |
檔案大小 | 40.96 KB |
安裝次數 | 8,507 |
目前版本 | 0.0.5 |
更新時間 | 2019-11-18 |
上架時間 | 2019-11-12 |
評分 | 4.71/5 共 35 次評分 |
開發者 | BrowserNative |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://browsernative.com/screenshot-extension/ |
說明頁面URL | https://browsernative.com/screenshot-extension/ |
隱私政策頁面URL | https://browsernative.com/extensions-privacy-policy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screenshot", "description": "Quickly take screenshot of current tab. Keyboard Commnd: Alt+P.", "version": "0.0.5", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "static\/128.png", "default_title": "Take Screenshot" }, "icons": { "48": "static\/48.png", "128": "static\/128.png" }, "permissions": [ "activeTab", "downloads" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+P" } } }, "options_ui": { "page": "options.html", "open_in_tab": true }, "homepage_url": "https:\/\/browsernative.com\/screenshot-extension\/" } |