Simple Form Fill

Enter text into input fields by choosing items from the context menu or using the optional autocomplete.

Simple Form Fill란 무엇입니까?

Simple Form Fill은(는) Sebastian Blask에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enter text into input fields by choosing items from the context menu or using the optional autocomplete."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Simple Form Fill 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Simple Form Fill
================
Enter text into input fields by choosing configured items from the context menu
or using the optional autocomplete (not autofill) which suggest items based on
typed input.

New items can be added through the context menu while having some text selected
or in the extension's preferences.

Screenshot Descriptions
-----------------------

 - Configure the items you can fill into text fields in the add-on preferences (get there directly by clicking the toolbar button or through the context menu)
 - Or add items from selected text using the context menu
 - Use the context menu on input fields to fill one of the configured items
 - Enable autocomplete in the preferences to get a list of matching items to choose from when typing in input fields. You can configure comments in the preferences - they are matched against but removed from the item before filling

Feedback
--------

You can report bugs or make feature requests on https://github.com/sblask/webextension-simple-form-fill

Patches are welcome.                    

확장 프로그램 기본 정보

이름 Simple Form Fill Simple Form Fill
ID filmkodmbabpfkfhoekpgfpankdlajmf
공식 URL https://chromewebstore.google.com/detail/simple-form-fill/filmkodmbabpfkfhoekpgfpankdlajmf
설명 Enter text into input fields by choosing items from the context menu or using the optional autocomplete.
파일 크기 248 KB
설치 횟수 13,310
현재 버전 2.2.1
최근 업데이트 2021-03-28
출시 날짜 2017-11-10
평점 4.58/5 총 31 개의 평점
개발자 Sebastian Blask
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sblask/webextension-simple-form-fill
도움말 페이지 URL https://github.com/sblask/webextension-simple-form-fill
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "util.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_popup": "options\/options.html",
        "default_title": "Simple Form Fill"
    },
    "description": "Enter text into input fields by choosing items from the context menu or using the optional autocomplete.",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-simple-form-fill",
    "icons": {
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png",
        "128": "icon-128x128.png"
    },
    "manifest_version": 2,
    "name": "Simple Form Fill",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "",
        "contextMenus",
        "storage"
    ],
    "version": "2.2.1"
}