Wrapper Bot
A Chrome extension for easily wrapping selected text in custom defined HTML templates.
什么是Wrapper Bot?
Wrapper Bot是由Jay Bats开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension for easily wrapping selected text in custom defined HTML templates.”。
扩展截图
下载Wrapper Bot扩展crx文件
下载Wrapper Bot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Wrapper Bot allows you to wrap your text selections in custom HTML wrappers. This way, you can easily apply often used stylings without having to manually type the HTML over and over again.
扩展基本信息
名称 | Wrapper Bot |
ID | omnmbcgclimiokggjlaljacckoaieagi |
官方URL | https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi |
简介 | A Chrome extension for easily wrapping selected text in custom defined HTML templates. |
文件大小 | 154 KB |
安装次数 | 38 |
当前版本 | 1.0 |
更新时间 | 2014-05-29 |
上架时间 | 2014-05-29 |
评分 | 4.00/5 共1次评分 |
开发者 | Jay Bats |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wrapper Bot", "version": "1.0", "manifest_version": 2, "description": "A Chrome extension for easily wrapping selected text in custom defined HTML templates.", "browser_action": { "default_icon": "icon-16.png", "default_popup": "popup.html" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "contextMenus", "storage" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.9.1-min.js", "content.js" ] } ] } |