Simple RAM Info
This extension displays the amount of available system memory near the address bar.
Cos'è Simple RAM Info?
Simple RAM Info è un'estensione di Chrome sviluppata da tylercd100, e la sua funzione principale è "This extension displays the amount of available system memory near the address bar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Simple RAM Info
Scarica i file di estensione Simple RAM Info 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 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
Informazioni di Base sull'Estensione
Nome | Simple RAM Info |
ID | dbdlfjheiknjgnnhknninniobeeeknko |
URL Ufficiale | https://chromewebstore.google.com/detail/simple-ram-info/dbdlfjheiknjgnnhknninniobeeeknko |
Descrizione | This extension displays the amount of available system memory near the address bar. |
Dimensione del File | 61.37 KB |
Conteggio Installazioni | 1,568 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2015-12-27 |
Data di Pubblicazione | 2015-12-27 |
Valutazione | 4.60/5 Totale 15 Valutazioni |
Sviluppatore | tylercd100 |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |