Randomiser

Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…

ما هو Randomiser؟

Randomiser هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Randomiser

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

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

                        Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.

As developers, we waste valuable time repeatedly filling in forms on the websites we are building. Randomiser takes away this wasted time by looking at the input types of fields and the information contained in labels and tries to fill the field with the most relevant information it can.

Currently, the following "randomisations" are supported:

First name
Last name
Full name
Street
City
Town
Post code
Zip code
Date
Radio
Checkbox
Anything else will be filled with a random string or number                    

معلومات أساسية عن التمديد

الاسم Randomiser Randomiser
ID gdfiadonoihphoifnmeicopggilfmidc
عنوان URL الرسمي https://chromewebstore.google.com/detail/randomiser/gdfiadonoihphoifnmeicopggilfmidc
الوصف Randomiser is a Chrome extension for web developers which fills forms with relevant random information at the click of a button.…
حجم الملف 129 KB
عدد التثبيتات 66
النسخة الحالية 0.3
آخر تحديث 2015-06-24
تاريخ النشر 2015-06-24
تقييم 3.00/5 مجموع تقييمات 2
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Randomiser",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "vendor\/jquery\/jquery-2.1.3.min.js",
                "vendor\/jquery.randomise\/jquery.randomise.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}