Fancy Hands
This extension adds Fancy Hands functionality to your chrome browser.
Fancy Handsคืออะไร?
Fancy Hands เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fancy Hands และคุณลักษณะหลักของมันคือ "This extension adds Fancy Hands functionality to your chrome browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fancy Hands
ดาวน์โหลดไฟล์ส่วนขยาย Fancy Hands ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Create new Fancy Hands requests and check on old ones from anywhere in your browser! By installing this extension, you now have the freedom of delegating tasks from any website you happen to be on. We'll also send desktop notifications to let you know exactly when a task has been updated or completed!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fancy Hands |
ID | pgelmogahekmflhjhjgmmgdccbjagipo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fancy-hands/pgelmogahekmflhjhjgmmgdccbjagipo |
คำอธิบาย | This extension adds Fancy Hands functionality to your chrome browser. |
ขนาดไฟล์ | 814 KB |
จำนวนการติดตั้ง | 530 |
เวอร์ชันปัจจุบัน | 0.6.5 |
อัปเดตครั้งล่าสุด | 2015-04-07 |
วันที่เผยแพร่ | 2015-04-07 |
คะแนน | 4.40/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | Fancy Hands |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://fancyhands.com |
URL หน้านโยบายความเป็นส่วนตัว | https://www.fancyhands.com/privacy-policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fancy Hands", "description": "This extension adds Fancy Hands functionality to your chrome browser.", "version": "0.6.5", "options_page": "options.html", "permissions": [ "*:\/\/*\/*", "background", "storage", "tabs", "history", "notifications" ], "background": { "page": "background.html" }, "browser_action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Fancy Hands" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "lib\/jquery.2.0.3.min.js", "content.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ "partials\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |