Paste From Context Menu
This extension allows you to save predefined snippets and paste them to text inputs using context menu.
What is Paste From Context Menu?
Paste From Context Menu is a Chrome extension developed by coder, and its main feature is "This extension allows you to save predefined snippets and paste them to text inputs using context menu.".
Extension Screenshots
Download Paste From Context Menu Extension CRX File
Download Paste From Context Menu 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
Extension Basic Information
Name | Paste From Context Menu |
ID | ihfogeehoikadinpdoeapemeolcppfjf |
Official URL | https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf |
Description | This extension allows you to save predefined snippets and paste them to text inputs using context menu. |
File Size | 20.88 KB |
Installation Count | 3,181 |
Current Version | 1.0.1 |
Last Updated | 2016-10-14 |
Publish Date | 2016-10-14 |
Rating | 3.74/5 Total 23 Ratings |
Developer | coder |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Paste From Context Menu", "short_name": "pastefromcontextmenu", "version": "1.0.1", "author": "Coder", "description": "This extension allows you to save predefined snippets and paste them to text inputs using context menu.", "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "64": "icons\/64x64.png", "128": "icons\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "contextMenus", "clipboardRead", "clipboardWrite", "activeTab", "storage" ], "browser_action": { "default_title": "Paste From Context Menu", "default_icon": "icons\/48x48.png", "default_popup1": "popup.html" } } |