Copy Fields Data - CTH

Copy Form Fields Data : Name, ID, Address, Links, Text, Image Link and more

Wat is Copy Fields Data - CTH?

Copy Fields Data - CTH is een Chrome-extensie ontwikkeld door C Tech Hindi, en de belangrijkste functie is "Copy Form Fields Data : Name, ID, Address, Links, Text, Image Link and more".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Copy Fields Data - CTH

Download Copy Fields Data - CTH-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        # Copy Form Fields Data - CTH

Copy Form Fields Data : `Name`, `ID`, `Address`, `Links`, `Text`, `Image Link` and more

## https://github.com/ctechhindi/Copy-Form-Fields-Data

## Features

* Copy HTML Field's Name (Single and Multiple)
* Copy HTML Field's Id (Single and Multiple)
* Copy HTML Field's Address (Single and Multiple)

## Reporting Issues radioactive

If you have a problem with this plugin or found any bug, please open an issue on GitHub.

## Copyright and License copyright

Code copyright 2020 ctechhindi. Code released under the MIT license.                    

Basisinformatie over de Extensie

Naam Copy Fields Data - CTH Copy Fields Data - CTH
ID npbkckjnhfooeafhkjfpildbcdinnehg
Officiële URL https://chromewebstore.google.com/detail/copy-fields-data-cth/npbkckjnhfooeafhkjfpildbcdinnehg
Beschrijving Copy Form Fields Data : Name, ID, Address, Links, Text, Image Link and more
Bestandsgrootte 1.15 MB
Aantal Installaties 280
Huidige Versie 0.0.3
Laatst Bijgewerkt 2021-07-13
Publicatiedatum 2020-11-17
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar C Tech Hindi
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://ctechhindi.in/extensions/copy-form-fields-data/
Help Pagina-URL https://ctechhindi.in/extensions/copy-form-fields-data/#support
URL van de Privacybeleid Pagina https://ctechhindi.in/privacy
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "icons": {
        "128": "icons\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_appName__",
        "default_icon": {
            "16": "icons\/16x16.png",
            "24": "icons\/24x24.png",
            "32": "icons\/32x32.png"
        }
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "assets\/css\/onload.css",
                "assets\/css\/copy-element-selector.css"
            ],
            "js": [
                "assets\/js\/selector-generator.js",
                "scripts\/content_script_01.js"
            ]
        }
    ],
    "commands": {
        "cthE001_copy-focused-field-name": {
            "suggested_key": {
                "default": "Alt+N",
                "windows": "Alt+N"
            },
            "description": "Copy Field Name"
        },
        "cthE001_copy-focused-field-id": {
            "suggested_key": {
                "default": "Alt+I",
                "windows": "Alt+I"
            },
            "description": "Copy Field ID"
        },
        "cthE001_copy-focused-field-address": {
            "suggested_key": {
                "default": "Alt+A",
                "windows": "Alt+A"
            },
            "description": "Copy Field Address"
        },
        "cthE001_past-value-in-form-field": {
            "suggested_key": {
                "default": "Alt+V",
                "windows": "Alt+V"
            },
            "description": "Paste Value in the Form Field"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self",
    "version": "0.0.3"
}