filelist.ro helper

This addon is intended to improve the filelist.ro website ui

Что такое filelist.ro helper?

filelist.ro helper - это расширение Chrome, разработанное Zmoky, и его основная функция - "This addon is intended to improve the filelist.ro website ui".

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

screenshot

Скачать файл CRX расширения filelist.ro helper

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

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

                        This is an extension that improves filelist browsing experience                    

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

Название filelist.ro helper filelist.ro helper
ID cdpegimclchefkhgkgcfelcbnhionkgp
Официальный URL https://chromewebstore.google.com/detail/filelistro-helper/cdpegimclchefkhgkgcfelcbnhionkgp
Описание This addon is intended to improve the filelist.ro website ui
Размер файла 788 KB
Количество установок 23
Текущая Версия 1.4
Последнее Обновление 2020-09-17
Дата публикации 2019-02-02
Рейтинг 4.75/5 Всего 4 оценок
Разработчик Zmoky
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.freeprivacypolicy.com/our-privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "filelist.ro helper",
    "version": "1.4",
    "description": "This addon is intended to improve the filelist.ro website ui",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo-filelist-16.png",
            "32": "images\/logo-filelist-32.png",
            "48": "images\/logo-filelist-48.png",
            "128": "images\/logo-filelist-128.png"
        }
    },
    "icons": {
        "16": "images\/logo-filelist-16.png",
        "32": "images\/logo-filelist-32.png",
        "48": "images\/logo-filelist-48.png",
        "128": "images\/logo-filelist-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/filelist.io\/browse.php*",
                "https:\/\/filelist.io\/internal.php*"
            ],
            "css": [],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "styles.css"
    ]
}