Simple RAM Info

This extension displays the amount of available system memory near the address bar.

Что такое Simple RAM Info?

Simple RAM Info - это расширение Chrome, разработанное tylercd100, и его основная функция - "This extension displays the amount of available system memory near the address bar.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Simple RAM Info

Скачайте файлы расширений Simple RAM Info в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Simple RAM Info Simple RAM Info
ID dbdlfjheiknjgnnhknninniobeeeknko
Официальный URL https://chromewebstore.google.com/detail/simple-ram-info/dbdlfjheiknjgnnhknninniobeeeknko
Описание This extension displays the amount of available system memory near the address bar.
Размер файла 61.37 KB
Количество установок 1,568
Текущая Версия 1.1.1
Последнее Обновление 2015-12-27
Дата публикации 2015-12-27
Рейтинг 4.60/5 Всего 15 оценок
Разработчик tylercd100
Тип оплаты free
Поддерживаемые языки 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"
    ]
}