Window Dimensions
This extension will display the window's dimensions after resizing the browser window.
什麼是Window Dimensions?
Window Dimensions是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension will display the window's dimensions after resizing the browser window.”。
擴展截圖
下載Window Dimensions擴展crx文件
下載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 |
官方網址 | 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" } |