Size Grabber
This extension will let you know the page size and view state size in bytes.
Co je Size Grabber?
Size Grabber je rozšíření Chrome vyvinuté https://www.neverrecycle.com, a jeho hlavní funkcí je „This extension will let you know the page size and view state size in bytes.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Size Grabber
Stáhněte si soubory rozšíření Size Grabber ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This is a quick and easy extension that will just let you know the page size and view state. The view state is really only for aspx pages but the page size works anywhere.
Základní Informace o Rozšíření
Název | Size Grabber |
ID | jgoenlgmmmgickjnnepbpdhjkpfccino |
Oficiální URL | https://chromewebstore.google.com/detail/size-grabber/jgoenlgmmmgickjnnepbpdhjkpfccino |
Popis | This extension will let you know the page size and view state size in bytes. |
Velikost souboru | 5.58 KB |
Počet instalací | 299 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2014-02-12 |
Datum Vydání | 2014-02-12 |
Hodnocení | 4.00/5 Celkem 4 Hodnocení |
Vývojář | https://www.neverrecycle.com |
Typ Platby | free |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Size Grabber", "description": "This extension will let you know the page size and view state size in bytes.", "version": "1.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" } } |