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