Measuring Box
On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is
Measuring Boxとは何ですか?
Measuring Boxはjonny_spryによって開発されたChromeの拡張機能で、その主な機能は「On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is」です。
拡張機能のスクリーンショット
Measuring Box拡張機能のCRXファイルをダウンロード
Measuring Box拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Use the mouse to click and drag over an area of the webpage to measure the content underneath. This also tells you what the aspect ratio is.
拡張機能の基本情報
名前 | Measuring Box |
ID | jciegdpdoijocnobdcmdhbagjncapdfh |
公式URL | https://chromewebstore.google.com/detail/measuring-box/jciegdpdoijocnobdcmdhbagjncapdfh |
説明 | On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is |
ファイルサイズ | 86.55 KB |
インストール数 | 115 |
現在のバージョン | 1.0 |
最終更新日 | 2016-08-11 |
公開日 | 2016-08-11 |
評価 | 2.00/5 合計 4 レビュー |
開発者 | jonny_spry |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Measuring Box", "description": "On the fly measuring box used by click and drag action. It can be used on any website to find out what size an element or image is", "version": "1.0", "browser_action": { "default_icon": "box.png", "default_title": "icon" }, "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery.js", "contentScript.js" ] } ], "permissions": [ "activeTab" ] } |