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

تحميل ملف CRX للإضافة Random Text Generator

قم بتنزيل ملفات الامتداد Random Text Generator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ppshobi/chrome-random-text-generator
عنوان صفحة المساعدة 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'"
}