Random Text Generator

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

Random Text Generator là gì?

Random Text Generator là một tiện ích mở rộng Chrome được phát triển bởi https://shobi.in, và tính năng chính của nó là "Insert any amount of fake data to a form field. Easy Peasy".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Random Text Generator

Tải xuống các tệp mở rộng Random Text Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Random Text Generator Random Text Generator
ID lmealcdbihjhocippaajjhijhjciaojo
URL Chính Thức https://chromewebstore.google.com/detail/random-text-generator/lmealcdbihjhocippaajjhijhjciaojo
Mô tả Insert any amount of fake data to a form field. Easy Peasy
Kích Thước Tệp 719 KB
Số Lần Cài Đặt 514
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-11-16
Ngày Phát Hành 2018-11-14
Đánh Giá 2.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://shobi.in
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ppshobi/chrome-random-text-generator
URL Trang Trợ Giúp https://github.com/ppshobi/chrome-random-text-generator/issues
Ngôn Ngữ Được Hỗ Trợ 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'"
}