Snip-It
Copy a simple text snippet about the active tab to the clipboard
Snip-Itคืออะไร?
Snip-It เป็นส่วนขยายของ Chrome ที่พัฒนาโดย crowe.mitch และคุณลักษณะหลักของมันคือ "Copy a simple text snippet about the active tab to the clipboard"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Snip-It
ดาวน์โหลดไฟล์ส่วนขยาย Snip-It ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Save webpages to your clipboard for easy pasting into a markdown document.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | fbioimabbleddmecllbenileihlpnamf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf |
คำอธิบาย | Copy a simple text snippet about the active tab to the clipboard |
ขนาดไฟล์ | 33.33 KB |
จำนวนการติดตั้ง | 481 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2017-01-04 |
วันที่เผยแพร่ | 2017-01-04 |
ผู้พัฒนา | crowe.mitch |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Snip-It", "description": "Copy a simple text snippet about the active tab to the clipboard", "version": "2.0", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "jquery-2.1.0.min.js", "background.js" ], "persistent": false }, "commands": { "tab-snippet": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" }, "description": "Copy a snippet of the current tab" } }, "browser_action": { "default_title": "Copy a snippet to the clipboard", "default_icon": "icon.png" }, "manifest_version": 2 } |