Create Textfield

This extension adds an option to the right-click menu to create a textfield at the mouse location.

Create Textfield क्या है?

Create Textfield Taylor Shockey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds an option to the right-click menu to create a textfield at the mouse location."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Create Textfield एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        I often find myself wanting to use the dictation software, VoiceIn Voice Typing on pages that lack textfields (VoiceIn requires one). This extension adds an option to the right-click menu to generate a textfield popup at the cursor location.

NOTE: Does not work on https://chrome.google.com pages for some reason. So, don't assume it doesn't work if you can't get it working on the store page. Also make sure you refresh any open tabs after installation to get the plugin working on that tab.

Let me know about bugs or feature requests. This extensions was really made for myself, but I'm willing to listen and I might continue developing it.                    

एक्सटेंशन की मूल जानकारी

नाम Create Textfield Create Textfield
ID faflgppbhajieoeedeiifcedhlelcefd
आधिकारिक URL https://chromewebstore.google.com/detail/create-textfield/faflgppbhajieoeedeiifcedhlelcefd
विवरण This extension adds an option to the right-click menu to create a textfield at the mouse location.
फ़ाइल का आकार 154 KB
स्थापना संख्या 23
वर्तमान संस्करण 1.0
अंतिम अपडेट 2018-02-05
प्रकाशन तिथि 2018-02-05
डेवलपर Taylor Shockey
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Create Textfield",
    "description": "This extension adds an option to the right-click menu to create a textfield at the mouse location.",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon-16x16.png",
        "default_popup": "popup.html",
        "default_title": "Create Textfield"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "jquery-3.3.1.min.js",
            "popup.js"
        ]
    },
    "icons": {
        "16": "icon-16x16.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    },
    "web_accessible_resources": [
        "images\/*.png",
        "jquery-ui.min.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "jquery-ui.min.js",
                "injection_script.js"
            ]
        }
    ]
}