QShot
Quick way to capture any area in web
什麼是QShot?
QShot是由Risto N開發的Chrome擴展程式,該擴展的主要功能是“Quick way to capture any area in web”。
擴展截圖
下載QShot擴展crx文件
下載QShot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Capture areas in web browser quickly without using print screen and paint.
The extension code is open sourced take a look at https://github.com/riston/qshot. 擴展基本資訊
| 名稱 | |
| ID | japnknidaadlnbmhmbcboadkogiglmjd |
| 官方網址 | https://chromewebstore.google.com/detail/qshot/japnknidaadlnbmhmbcboadkogiglmjd |
| 簡介 | Quick way to capture any area in web |
| 檔案大小 | 963 KB |
| 安裝次數 | 28 |
| 目前版本 | 1.3 |
| 更新時間 | 2015-12-27 |
| 上架時間 | 2015-12-27 |
| 評分 | 3.33/5 共 3 次評分 |
| 開發者 | Risto N |
| 付費類型 | free |
| 擴展官網 | https://github.com/riston/qshot |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "QShot",
"description": "Quick way to capture any area in web",
"version": "1.3",
"icons": {
"16": "assets\/logo-16.png",
"48": "assets\/logo-48.png",
"128": "assets\/logo-128.png"
},
"browser_action": [],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"activeTab",
"background"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"index.html",
"bundle.js",
"execute.js",
"execute-close.js"
]
} | |