Fill form from json

Fill a form from json

Fill form from jsonคืออะไร?

Fill form from json เป็นส่วนขยายของ Chrome ที่พัฒนาโดย luciano.bestia และคุณลักษณะหลักของมันคือ "Fill a form from json"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fill form from json

ดาวน์โหลดไฟล์ส่วนขยาย Fill form from json ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Filling long web forms with repeated data is boring, tedious, time consuming and error prone.  
It is better to save this data as json and use it multiple times to fill the forms.  
Json is a simple text format that is a standard for web communication.  
It is human readable and easy to edit, copy, save, send,...  
The extension supports string and number in json. The extension supports name and ng-reflect-name in html.  

## Security

This extension does not send any data over the network for security and privacy.  
The extension can access only the active Tab.  
It can get a json from an URL that you enter.  
The source code is published on github and anybody can inspect it to see there is no malicious or dangerous code.  

## OpenSource

This is an open source application. It is free of charge as free beer - MIT Licence.  
Anybody can use this application and its source code for their needs.  
Sure I would be happy to drink a free beer for your health. You could donate a beer on .

## Example 1 : copy/paste json

Open the json data file:
  
and copy the json to the clipboard (ctrl+a, ctrl+c).  
Open the webpage:  
  
start the extension and paste the data from the clipboard.  
Click on `Fill form from json`.  
Done.  

## Example 2 : Fill from URL

Open the webpage:  
  
start the extension and enter this URL:
  
Click on `Fill form from URL`.  
Done.
  
## Development

For development you can install it from the local disk.  
In `` enable `Developer mode` and then use `Load unpacked`.  

## Publishing

Publishing a Chrome Extension to Chrome Web Store is fairly easy.  
                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fill form from json Fill form from json
ID gdgkhgfgpfhnmiebaedlcaignonmjobe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fill-form-from-json/gdgkhgfgpfhnmiebaedlcaignonmjobe
คำอธิบาย Fill a form from json
ขนาดไฟล์ 79.5 KB
จำนวนการติดตั้ง 621
เวอร์ชันปัจจุบัน 21.1217.1328
อัปเดตครั้งล่าสุด 2021-12-20
วันที่เผยแพร่ 2019-11-25
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา luciano.bestia
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/LucianoBestia/chext_fill_form_from_json
URL หน้าช่วยเหลือ https://github.com/LucianoBestia/chext_fill_form_from_json
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fill form from json",
    "version": "21.1217.1328",
    "description": "Fill a form from json",
    "browser_action": {
        "default_icon": "icon32.png",
        "default_popup": "popup.html",
        "default_title": "Fill form from json"
    },
    "permissions": [
        "*:\/\/*\/*",
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "192": "icon192.png"
    }
}