Keep it Quick
Keep important data and info and reuse it quickly.
Keep it Quickคืออะไร?
Keep it Quick เป็นส่วนขยายของ Chrome ที่พัฒนาโดย etaylib และคุณลักษณะหลักของมันคือ "Keep important data and info and reuse it quickly."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keep it Quick
ดาวน์โหลดไฟล์ส่วนขยาย Keep it Quick ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever used the computer and on some point really needed to use your driver's licence id, your office address or your parent PO BOX number? How many times did you have to get up of your chair and look for it? Well, now you can keep the data INSIDE the browser for easy fetching. Quickly add, remove, copy or fill any piece of important data you need for later use. Important: Your data is discrete, we don't save it or track it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gobpjokhejbdfdmdoojdkkliikomniol |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/keep-it-quick/gobpjokhejbdfdmdoojdkkliikomniol |
คำอธิบาย | Keep important data and info and reuse it quickly. |
ขนาดไฟล์ | 126 KB |
จำนวนการติดตั้ง | 312 |
เวอร์ชันปัจจุบัน | 0.1.0 |
อัปเดตครั้งล่าสุด | 2019-02-02 |
วันที่เผยแพร่ | 2019-02-02 |
คะแนน | 3.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | etaylib |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://etaylib.s3.amazonaws.com/privacy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Keep it Quick", "short_name": "Keep it Quick", "description": "Keep important data and info and reuse it quickly.", "version": "0.1.0", "browser_action": { "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.3.min.js", "scripts.js" ], "css": [ "style.css" ], "run_at": "document_start", "all_frames": true, "match_about_blank": true } ], "icons": { "128": "logo.png", "16": "logo.png", "48": "logo.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "contextMenus" ], "background": { "scripts": [ "jquery-1.11.3.min.js", "background.js" ] } } |