Simple RAM Info
This extension displays the amount of available system memory near the address bar.
Vad är Simple RAM Info?
Simple RAM Info är en Chrome-tillägg utvecklad av tylercd100, och dess huvudfunktion är "This extension displays the amount of available system memory near the address bar.".
Tilläggsskärmbilder
Ladda ner Simple RAM Info-förlängningens CRX-fil
Ladda ner Simple RAM Info-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Simple RAM Info |
ID | dbdlfjheiknjgnnhknninniobeeeknko |
Officiell webbadress | https://chromewebstore.google.com/detail/simple-ram-info/dbdlfjheiknjgnnhknninniobeeeknko |
Beskrivning | This extension displays the amount of available system memory near the address bar. |
Filstorlek | 61.37 KB |
Antal Installationer | 1,568 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2015-12-27 |
Publiceringsdatum | 2015-12-27 |
Betyg | 4.60/5 Totalt 15 Betyg |
Utvecklare | tylercd100 |
Betalningssätt | free |
Stödda Språk | 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" ] } |