Insert Signature
Insert a signature into a text field.
Wat is Insert Signature?
Insert Signature is een Chrome-extensie ontwikkeld door Nick Dollimount, en de belangrijkste functie is "Insert a signature into a text field.".
Extensie Screenshots
Download het CRX-bestand van de extensie Insert Signature
Download Insert Signature-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
Insert a predefined signature text block to any text field.
Signature is placed at the cursor location. Basisinformatie over de Extensie
| Naam | |
| ID | popjgphflfnpefcncljdkaenmellboei |
| Officiële URL | https://chrome.google.com/webstore/detail/insert-signature/popjgphflfnpefcncljdkaenmellboei |
| Beschrijving | Insert a signature into a text field. |
| Bestandsgrootte | 23.16 KB |
| Aantal Installaties | 8,973 |
| Huidige Versie | 0.0.0.5 |
| Laatst Bijgewerkt | 2014-07-29 |
| Publicatiedatum | 2014-07-29 |
| Beoordeling | 3.09/5 Totaal 11 Beoordelingen |
| Ontwikkelaar | Nick Dollimount |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
} | |