Cultivera LCB Manifest Autofill

An easy-to-use automatic web form filler that eliminates double-entry by auto-filling LCB form using the manifest reference number

Cultivera LCB Manifest Autofill란 무엇입니까?

Cultivera LCB Manifest Autofill은(는) Cultivera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An easy-to-use automatic web form filler that eliminates double-entry by auto-filling LCB form using the manifest reference number"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Cultivera LCB Manifest Autofill 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Transportation Manifest Form Autofill

The "Transportation Manifest Form Autofill" extension is an easy-to-use automatic web form filler that eliminates double-entry by auto-filling all the required fields using the manifest reference number. 

Steps:
1. Generate Cultivera API key under Configuration for the LCB Manifest Browser Extension.
2. In Chrome Web Store search for "Cultivera LCB Manifest Filler" extension.
3. Add the "Cultivera LCB Manifest Filler" extension to Chrome browser and pin it to the extensions toolbar.
4. Right-click on the Cultivera icon ( "Cultivera LCB Manifest Filler" extension) and select Options to set API key from step 1.
5. Click on the LCB manifest link (lcb.wa.gov/manifest) from the Manifest-Information page to be routed to the LCB manifest form or load a manifest by typing in a specific Manifest Ref# by clicking on the Cultivera extension Icon.                    

확장 프로그램 기본 정보

이름 Cultivera LCB Manifest Autofill Cultivera LCB Manifest Autofill
ID lmkpadkdppinekapjedjocmnomehbeig
공식 URL https://chromewebstore.google.com/detail/cultivera-lcb-manifest-au/lmkpadkdppinekapjedjocmnomehbeig
설명 An easy-to-use automatic web form filler that eliminates double-entry by auto-filling LCB form using the manifest reference number
파일 크기 231 KB
설치 횟수 534
현재 버전 1.0.0
최근 업데이트 2022-04-18
출시 날짜 2021-12-29
개발자 Cultivera
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://cultivera.com/
도움말 페이지 URL https://support.cultivera.com/article/rbm4vf87wx-chrome-extension-wa-lcb-manifest-webform-filler-setup-and-instructions
개인정보 보호 정책 페이지 URL https://wa.cultiverapro.com/PrivacyPolicy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cultivera LCB Manifest Autofill",
    "version": "1.0.0",
    "description": "An easy-to-use automatic web form filler that eliminates double-entry by auto-filling LCB form using the manifest reference number",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "unlimitedStorage",
        "https:\/\/api-wa.cultivera.com\/",
        "https:\/\/lcb.wa.gov\/"
    ],
    "background": {
        "scripts": [
            "helpers.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/sml.png",
            "32": "images\/sml.png",
            "48": "images\/sml.png",
            "128": "images\/sml.png"
        }
    },
    "icons": {
        "16": "images\/sml.png",
        "32": "images\/sml.png",
        "48": "images\/sml.png",
        "128": "images\/sml.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/lcb.wa.gov\/*"
            ],
            "js": [
                "contentScript.js",
                ".\/libs\/jquery.min.js"
            ],
            "all_frames": true
        }
    ]
}