Window Dimensions
This extension will display the window's dimensions after resizing the browser window.
Window Dimensionsคืออะไร?
Window Dimensions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension will display the window's dimensions after resizing the browser window."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Window Dimensions
ดาวน์โหลดไฟล์ส่วนขยาย Window Dimensions ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This package allows you to view window size upon resizing the browser. Colors, font-size, and location can be changed in the options panel.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Window Dimensions |
ID | fdegbhikbooibcahgagmcbkdecmelgfo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo |
คำอธิบาย | This extension will display the window's dimensions after resizing the browser window. |
ขนาดไฟล์ | 52.19 KB |
จำนวนการติดตั้ง | 979 |
เวอร์ชันปัจจุบัน | 0.0.7 |
อัปเดตครั้งล่าสุด | 2016-04-18 |
วันที่เผยแพร่ | 2016-04-18 |
คะแนน | 2.45/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "background": { "persistent": false, "scripts": [ "js\/jquery-1.11.1.min.js", "js\/scripts.js" ] }, "content_scripts": [ { "css": [ "css\/styles.css" ], "js": [ "js\/jquery-1.11.1.min.js", "js\/scripts.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/localhost\/*", "https:\/\/localhost\/*", "http:\/\/127.0.0.1\/*", "file:\/\/\/*\/*" ], "run_at": "document_end" } ], "description": "This extension will display the window's dimensions after resizing the browser window.", "icons": { "128": "img\/icon128.png" }, "manifest_version": 2, "name": "Window Dimensions", "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.0.7" } |