Paste From Context Menu
This extension allows you to save predefined snippets and paste them to text inputs using context menu.
什么是Paste From Context Menu?
Paste From Context Menu是由coder开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to save predefined snippets and paste them to text inputs using context menu.”。
扩展截图
下载Paste From Context Menu扩展crx文件
下载Paste From Context Menu扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | Paste From Context Menu |
ID | ihfogeehoikadinpdoeapemeolcppfjf |
官方URL | https://chromewebstore.google.com/detail/paste-from-context-menu/ihfogeehoikadinpdoeapemeolcppfjf |
简介 | This extension allows you to save predefined snippets and paste them to text inputs using context menu. |
文件大小 | 20.88 KB |
安装次数 | 3,181 |
当前版本 | 1.0.1 |
更新时间 | 2016-10-14 |
上架时间 | 2016-10-14 |
评分 | 3.74/5 共23次评分 |
开发者 | coder |
付费类型 | free |
支持的语言 | 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" } } |