Wrapper Bot
A Chrome extension for easily wrapping selected text in custom defined HTML templates.
ما هو Wrapper Bot؟
Wrapper Bot هو إضافة Chrome تم تطويرها بواسطة Jay Bats، والميزة الرئيسية لها هي "A Chrome extension for easily wrapping selected text in custom defined HTML templates.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Wrapper Bot
قم بتنزيل ملفات الامتداد Wrapper Bot بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |