Window Dimensions
This extension will display the window's dimensions after resizing the browser window.
Vad är Window Dimensions?
Window Dimensions är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension will display the window's dimensions after resizing the browser window.".
Tilläggsskärmbilder
Ladda ner Window Dimensions-förlängningens CRX-fil
Ladda ner Window Dimensions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This package allows you to view window size upon resizing the browser. Colors, font-size, and location can be changed in the options panel.
Grundläggande Information om Tillägg
Namn | Window Dimensions |
ID | fdegbhikbooibcahgagmcbkdecmelgfo |
Officiell webbadress | https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo |
Beskrivning | This extension will display the window's dimensions after resizing the browser window. |
Filstorlek | 52.19 KB |
Antal Installationer | 979 |
Aktuell Version | 0.0.7 |
Senast Uppdaterad | 2016-04-18 |
Publiceringsdatum | 2016-04-18 |
Betyg | 2.45/5 Totalt 11 Betyg |
Utvecklare | Unknown |
Betalningssätt | free |
Stödda Språk | 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" } |