Form Controller

To upgrade and simplify any html form

什麼是Form Controller?

Form Controller是由C Tech Hindi開發的Chrome擴展程式,該擴展的主要功能是“To upgrade and simplify any html form”。

擴展截圖

screenshot
screenshot

下載Form Controller擴展crx文件

下載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
官方網址 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'"
}