Dribbble Autozoom Extension
This extension will automagically zoom to 2x every shot you open in Dribbble
Dribbble Autozoom Extensionคืออะไร?
Dribbble Autozoom Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Carlos Roso และคุณลักษณะหลักของมันคือ "This extension will automagically zoom to 2x every shot you open in Dribbble"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dribbble Autozoom Extension
ดาวน์โหลดไฟล์ส่วนขยาย Dribbble Autozoom Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Google Chrome extension for automagically zooming any Dribbble shot.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | blmgbjebcflfapdhgnldmogaieaagioa |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/dribbble-autozoom-extensi/blmgbjebcflfapdhgnldmogaieaagioa |
คำอธิบาย | This extension will automagically zoom to 2x every shot you open in Dribbble |
ขนาดไฟล์ | 7.05 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2016-02-29 |
วันที่เผยแพร่ | 2016-02-29 |
คะแนน | 5.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Carlos Roso |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dribbble Autozoom Extension", "description": "This extension will automagically zoom to 2x every shot you open in Dribbble", "author": "Carlos Roso", "version": "1.0", "browser_action": { "default_icon": "icon.png", "default_title": "Test" }, "permissions": [ "activeTab", "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.dribbble.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ "script.js", "script_delay.js" ] } |