Size Grabber
This extension will let you know the page size and view state size in bytes.
O que é Size Grabber?
Size Grabber é uma extensão do Chrome desenvolvida por https://www.neverrecycle.com, e sua principal característica é "This extension will let you know the page size and view state size in bytes.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Size Grabber
Baixe arquivos de extensão Size Grabber no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Size Grabber |
ID | jgoenlgmmmgickjnnepbpdhjkpfccino |
URL Oficial | https://chromewebstore.google.com/detail/size-grabber/jgoenlgmmmgickjnnepbpdhjkpfccino |
Descrição | This extension will let you know the page size and view state size in bytes. |
Tamanho do Arquivo | 5.58 KB |
Contagem de Instalações | 299 |
Versão Atual | 1.0 |
Última Atualização | 2014-02-12 |
Data de Publicação | 2014-02-12 |
Classificação | 4.00/5 Total de 4 Avaliações |
Desenvolvedor | https://www.neverrecycle.com |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |