HyperG - Automatic Hyperlinks In Gmail
HyperG - Automatic Hyperlinks In Gmail
ما هو HyperG - Automatic Hyperlinks In Gmail؟
HyperG - Automatic Hyperlinks In Gmail هو إضافة Chrome تم تطويرها بواسطة kcurtis، والميزة الرئيسية لها هي "HyperG - Automatic Hyperlinks In Gmail".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HyperG - Automatic Hyperlinks In Gmail
قم بتنزيل ملفات الامتداد HyperG - Automatic Hyperlinks In Gmail بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Automatically create hyperlinks in gmail. This extension will save you a ton of time Simply type a word or phrase and HyperG will automatically convert it into a hyperlink. Great for creating email signatures, affiliate links, commonly used words or phrases. Examples: - add matching text "google" with replacement of "google" will automatically link to "http://www.google.com/" - adding matching text "tseg" with replacement of The Search Engine Guys will automatically link to "http://www.tseg.com/" Just make sure to use html in the replacement box. Enjoy!
معلومات أساسية عن التمديد
الاسم | HyperG - Automatic Hyperlinks In Gmail |
ID | achofajdllpmammddgfibkchijpgepgo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hyperg-automatic-hyperlin/achofajdllpmammddgfibkchijpgepgo |
الوصف | HyperG - Automatic Hyperlinks In Gmail |
حجم الملف | 188 KB |
عدد التثبيتات | 295 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2017-04-14 |
تاريخ النشر | 2017-04-14 |
تقييم | 4.50/5 مجموع تقييمات 4 |
المطور | kcurtis |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HyperG - Automatic Hyperlinks In Gmail", "version": "1.0.0", "manifest_version": 2, "description": "HyperG - Automatic Hyperlinks In Gmail", "browser_action": { "default_icon": "icons\/icon-128.png", "default_title": "HyperG - Automatic Hyperlinks In Gmail" }, "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ], "icons": { "128": "icons\/icon-128.png" }, "options_page": "ui\/Rules.html", "web_accessible_resources": [ "\/ui\/*" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "tabs" ] } |