Window Dimensions
This extension will display the window's dimensions after resizing the browser window.
Cos'è Window Dimensions?
Window Dimensions è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will display the window's dimensions after resizing the browser window.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Window Dimensions
Scarica i file di estensione Window Dimensions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This package allows you to view window size upon resizing the browser. Colors, font-size, and location can be changed in the options panel.
Informazioni di Base sull'Estensione
Nome | Window Dimensions |
ID | fdegbhikbooibcahgagmcbkdecmelgfo |
URL Ufficiale | https://chromewebstore.google.com/detail/window-dimensions/fdegbhikbooibcahgagmcbkdecmelgfo |
Descrizione | This extension will display the window's dimensions after resizing the browser window. |
Dimensione del File | 52.19 KB |
Conteggio Installazioni | 979 |
Versione Corrente | 0.0.7 |
Ultimo Aggiornamento | 2016-04-18 |
Data di Pubblicazione | 2016-04-18 |
Valutazione | 2.45/5 Totale 11 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |