smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

Что такое smartfiller-chrome?

smartfiller-chrome - это расширение Chrome, разработанное pablotomasborda, и его основная функция - "Learns as you fill forms, you will never have to type the same thing twice.".

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

screenshot

Скачать файл CRX расширения smartfiller-chrome

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

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

                        Learns as you fill forms, you will never have to type the same thing twice.
Works in your local browser memory, no server no cloud no accounts, no
payments, no subscription, and not filling the information in the form
filler. 
You are the only owner of the information.                    

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

Название smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
Официальный URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Описание Learns as you fill forms, you will never have to type the same thing twice.
Размер файла 57.55 KB
Количество установок 117
Текущая Версия 1.1
Последнее Обновление 2018-03-13
Дата публикации 2018-03-13
Рейтинг 2.33/5 Всего 3 оценок
Разработчик pablotomasborda
Тип оплаты free
Официальный сайт расширения https://github.com/PabloBorda/smartfiller-chrome
URL страницы помощи https://github.com/PabloBorda/smartfiller-chrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartfiller-chrome",
    "description": "Learns as you fill forms, you will never have to type the same thing twice.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "main.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "form.png",
        "default_popup": "background.html"
    }
}