Wrapper Bot
A Chrome extension for easily wrapping selected text in custom defined HTML templates.
What is Wrapper Bot?
Wrapper Bot is a Chrome extension developed by Jay Bats, and its main feature is "A Chrome extension for easily wrapping selected text in custom defined HTML templates.".
Extension Screenshots
Download Wrapper Bot Extension CRX File
Download Wrapper Bot 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
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.
Extension Basic Information
Name | Wrapper Bot |
ID | omnmbcgclimiokggjlaljacckoaieagi |
Official URL | https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi |
Description | A Chrome extension for easily wrapping selected text in custom defined HTML templates. |
File Size | 154 KB |
Installation Count | 38 |
Current Version | 1.0 |
Last Updated | 2014-05-29 |
Publish Date | 2014-05-29 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Jay Bats |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |