Random Text Generator

Insert any amount of fake data to a form field. Easy Peasy

Random Text Generatorคืออะไร?

Random Text Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shobi.in และคุณลักษณะหลักของมันคือ "Insert any amount of fake data to a form field. Easy Peasy"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Random Text Generator

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

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

                        This is a google chrome extension which will generate a random text of given length, and will paste the generated text into the last active input form field.

Use Cmd + Shift + I to insert fakeness in Mac
Use Ctrl + Shift + F to insert fakeness in Windows                    

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

ชื่อ Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
คำอธิบาย Insert any amount of fake data to a form field. Easy Peasy
ขนาดไฟล์ 719 KB
จำนวนการติดตั้ง 514
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-11-16
วันที่เผยแพร่ 2018-11-14
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://shobi.in
อีเมล ppshobi@gmail.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ppshobi/chrome-random-text-generator
URL หน้าช่วยเหลือ https://github.com/ppshobi/chrome-random-text-generator/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Random Text Generator",
    "description": "Insert any amount of fake data to a form field. Easy Peasy",
    "version": "1.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "title": "Random Text Generator"
    },
    "commands": {
        "insert-fake": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+I",
                "windows": "Ctrl+Shift+F"
            },
            "description": "Insert any amount of fake data to a form field"
        }
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "clipboardRead",
        "clipboardWrite"
    ],
    "icons": {
        "512": "icon\/icon_512.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}