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 |
官方網址 | 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" ] } ] } |