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 |
官方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" } |