Insert Signature

Insert a signature into a text field.

Co to jest Insert Signature?

Insert Signature to rozszerzenie Chrome opracowane przez Nick Dollimount, a jego główną funkcją jest „Insert a signature into a text field.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Insert Signature

Pobierz pliki rozszerzeń Insert Signature w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Insert a predefined signature text block to any text field.
Signature is placed at the cursor location.                    

Podstawowe informacje o rozszerzeniu

Nazwa Insert Signature Insert Signature
ID popjgphflfnpefcncljdkaenmellboei
Oficjalny URL https://chrome.google.com/webstore/detail/insert-signature/popjgphflfnpefcncljdkaenmellboei
Opis Insert a signature into a text field.
Rozmiar pliku 23.16 KB
Liczba instalacji 8,973
Aktualna Wersja 0.0.0.5
Ostatnia Aktualizacja 2014-07-29
Data Publikacji 2014-07-29
Ocena 3.09/5 Łącznie 11 Oceny
Deweloper Nick Dollimount
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Insert Signature",
    "description": "Insert a signature into a text field.",
    "version": "0.0.0.5",
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "browser_action": {
        "default_icon": "128x128.png",
        "default_title": "Insert Signature Options",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "backgroundScript.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "manifest_version": 2
}