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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cultivera, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Cultivera LCB Manifest Autofill

Λήψη αρχείων επέκτασης Cultivera LCB Manifest Autofill σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
        }
    ]
}