Insert Signature
Insert a signature into a text field.
What is Insert Signature?
Insert Signature is a Chrome extension developed by Nick Dollimount, and its main feature is "Insert a signature into a text field.".
Extension Screenshots
Download Insert Signature Extension CRX File
Download Insert Signature extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Insert a predefined signature text block to any text field. Signature is placed at the cursor location.
Extension Basic Information
Name | |
ID | popjgphflfnpefcncljdkaenmellboei |
Official URL | https://chrome.google.com/webstore/detail/insert-signature/popjgphflfnpefcncljdkaenmellboei |
Description | Insert a signature into a text field. |
File Size | 23.16 KB |
Installation Count | 8,973 |
Current Version | 0.0.0.5 |
Last Updated | 2014-07-29 |
Publish Date | 2014-07-29 |
Rating | 3.09/5 Total 11 Ratings |
Developer | Nick Dollimount |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |