Insert Signature
Insert a signature into a text field.
Vad är Insert Signature?
Insert Signature är en Chrome-tillägg utvecklad av Nick Dollimount, och dess huvudfunktion är "Insert a signature into a text field.".
Tilläggsskärmbilder
Ladda ner Insert Signature-förlängningens CRX-fil
Ladda ner Insert Signature-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Insert a predefined signature text block to any text field.
Signature is placed at the cursor location. Grundläggande Information om Tillägg
| Namn | |
| ID | popjgphflfnpefcncljdkaenmellboei |
| Officiell webbadress | https://chrome.google.com/webstore/detail/insert-signature/popjgphflfnpefcncljdkaenmellboei |
| Beskrivning | Insert a signature into a text field. |
| Filstorlek | 23.16 KB |
| Antal Installationer | 8,973 |
| Aktuell Version | 0.0.0.5 |
| Senast Uppdaterad | 2014-07-29 |
| Publiceringsdatum | 2014-07-29 |
| Betyg | 3.09/5 Totalt 11 Betyg |
| Utvecklare | Nick Dollimount |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |