Form Controller

To upgrade and simplify any html form

Τι είναι το Form Controller;

Το Form Controller είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον C Tech Hindi, και η κύρια λειτουργία του είναι "To upgrade and simplify any html form".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Form Controller

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

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

                        Form Controller
To upgrade and simplify any html form - Google Chrome Extension

## Field Actions

| Action Name | Extra Options |
| ----------- | ------------- |
| Default Value | `value` |
| Click |  |
| Convert Kruti Dev Font to Unicode |  |
| Convert Unicode to Kruti Dev Font |  |
| Copy Value For Other Element | `copyElm` |
| Decode Captcha | `apikey, imgElm` |
| Lowercase Characters |  |
| Uppercase Characters |  |
| CamelCase Characters |  |
| Remove Whitespace |  |
| Remove All Space |  |

## Using Libraries

* [Buefy](https://buefy.org/)
* [vue-codemirror](https://github.com/surmon-china/vue-codemirror)
* [Vue.Draggable](https://github.com/SortableJS/Vue.Draggable)


## Changelog

### **`Processing`**

* Max and Min Length, Live Character Counter
* Autocomplete - Month, Random Number, Day, Country, Years

### `V.0.0.1`

* Field Actions
  - Uppercase, CamelCase, Lowercase Characters
  - Remove Whitespace
  - Remove All Space                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Form Controller Form Controller
ID amlkbkafkloafdbohdpaplkimgnpomio
Επίσημο URL https://chrome.google.com/webstore/detail/form-controller/amlkbkafkloafdbohdpaplkimgnpomio
Περιγραφή To upgrade and simplify any html form
Μέγεθος Αρχείου 1.29 MB
Αριθμός Εγκαταστάσεων 22
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2021-03-18
Ημερομηνία Δημοσίευσης 2020-05-18
Προγραμματιστής C Tech Hindi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://ctechhindi.in/extensions/form-controller-extension/
Διεύθυνση URL της Σελίδας Βοήθειας https://ctechhindi.in/extensions/form-controller-extension/#support
URL της Σελίδας Πολιτικής Απορρήτου https://ctechhindi.in/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.3",
    "short_name": "FormController",
    "name": "Form Controller",
    "description": "To upgrade and simplify any html form",
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "contextMenus"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Form Controller",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script\/root.js",
                "script\/selector-generator.js",
                "script\/copy_element.js"
            ],
            "css": [
                "css\/copy-element-selector.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}