Simple RAM Info
This extension displays the amount of available system memory near the address bar.
O que é Simple RAM Info?
Simple RAM Info é uma extensão do Chrome desenvolvida por tylercd100, e sua principal característica é "This extension displays the amount of available system memory near the address bar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Simple RAM Info
Baixe arquivos de extensão Simple RAM Info 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 an extremely lightweight extension that displays the amount of available system memory in gigabytes as an icon near the address bar. Supports displaying values greater than 10GB. Version 1.1.0 -Added support for custom colors -Can change refresh interval
Informações Básicas da Extensão
Nome | Simple RAM Info |
ID | dbdlfjheiknjgnnhknninniobeeeknko |
URL Oficial | https://chromewebstore.google.com/detail/simple-ram-info/dbdlfjheiknjgnnhknninniobeeeknko |
Descrição | This extension displays the amount of available system memory near the address bar. |
Tamanho do Arquivo | 61.37 KB |
Contagem de Instalações | 1,568 |
Versão Atual | 1.1.1 |
Última Atualização | 2015-12-27 |
Data de Publicação | 2015-12-27 |
Classificação | 4.60/5 Total de 15 Avaliações |
Desenvolvedor | tylercd100 |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Tyler Arbon @tylercd100", "name": "Simple RAM Info", "description": "This extension displays the amount of available system memory near the address bar.", "version": "1.1.1", "browser_action": { "default_icon": "icon_19.png" }, "icons": { "48": "icon_48.png", "128": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "offline_enabled": true, "permissions": [ "system.memory", "storage", "background" ] } |