Wrapper Bot
A Chrome extension for easily wrapping selected text in custom defined HTML templates.
Wrapper Bot là gì?
Wrapper Bot là một tiện ích mở rộng Chrome được phát triển bởi Jay Bats, và tính năng chính của nó là "A Chrome extension for easily wrapping selected text in custom defined HTML templates.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Wrapper Bot
Tải xuống các tệp mở rộng Wrapper Bot dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Wrapper Bot |
ID | omnmbcgclimiokggjlaljacckoaieagi |
URL Chính Thức | https://chromewebstore.google.com/detail/wrapper-bot/omnmbcgclimiokggjlaljacckoaieagi |
Mô tả | A Chrome extension for easily wrapping selected text in custom defined HTML templates. |
Kích Thước Tệp | 154 KB |
Số Lần Cài Đặt | 38 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2014-05-29 |
Ngày Phát Hành | 2014-05-29 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Jay Bats |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |