Grid Builder
Grid Builder extension applies a grid to current web page.
Grid Builderคืออะไร?
Grid Builder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://beltslib.net และคุณลักษณะหลักของมันคือ "Grid Builder extension applies a grid to current web page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Grid Builder
ดาวน์โหลดไฟล์ส่วนขยาย Grid Builder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Grid Builder is a tool, built for front-end developers to inspect and examine their designs or any web site in action. This extension is absolutely a must have in every front-end developers browser.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Grid Builder |
ID | fdngjphcahnpgejdhledgcfggjokekgl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/grid-builder/fdngjphcahnpgejdhledgcfggjokekgl |
คำอธิบาย | Grid Builder extension applies a grid to current web page. |
ขนาดไฟล์ | 43.28 KB |
จำนวนการติดตั้ง | 972 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-11-23 |
วันที่เผยแพร่ | 2014-11-23 |
คะแนน | 3.70/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | https://beltslib.net |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://gridbuilder.beltslib.net |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Grid Builder", "description": "Grid Builder extension applies a grid to current web page.", "version": "1.0", "browser_action": { "default_icon": "icon-disabled.png", "default_popup": "popup.html" }, "background": { "page": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "content.min.css" ], "js": [ "jquery-2.1.1.min.js", "content.min.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ] } |