Highlight Word When Double Click
Double click on a word, the other same words in the page are automatically highlighted
ما هو Highlight Word When Double Click؟
Highlight Word When Double Click هو إضافة Chrome تم تطويرها بواسطة qii404، والميزة الرئيسية لها هي "Double click on a word, the other same words in the page are automatically highlighted".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Highlight Word When Double Click
قم بتنزيل ملفات الامتداد Highlight Word When Double Click بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Double-click to select a word, the word in other positions on the page will be automatically highlighted 2021.08.04 supports displaying the total number of matches 2020.07.03 The additional selected leading and trailing spaces when double-clicking will not affect the matching 2020.06.04 Add right side preview, similar to ctrl+F right sidebar 2020.05.03 Support iframe highlight 2020.04.13 Click on the extension icon, you can set the highlight function to be temporarily disabled when double-clicking to prevent jams in some large pages 2019.04.12 After selecting the sentence, it can be highlighted by the shortcut key Alt+S~ Press again to cancel the highlight~
معلومات أساسية عن التمديد
الاسم | Highlight Word When Double Click |
ID | hiemiigjnmkjedjibioplldlbkhekbjk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/highlight-word-when-doubl/hiemiigjnmkjedjibioplldlbkhekbjk |
الوصف | Double click on a word, the other same words in the page are automatically highlighted |
حجم الملف | 35.68 KB |
عدد التثبيتات | 1,422 |
النسخة الحالية | 0.1.6 |
آخر تحديث | 2021-09-03 |
تاريخ النشر | 2020-07-03 |
تقييم | 4.71/5 مجموع تقييمات 17 |
المطور | qii404 |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_title__", "description": "__MSG_description__", "version": "0.1.6", "manifest_version": 2, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "context.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "http:\/\/*\/", "https:\/\/*\/*", "https:\/\/*\/" ], "js": [ "highLight.js" ], "css": [ "highlight.css" ], "all_frames": true } ], "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_icon": { "16": "16.png", "48": "48.png", "128": "128.png" }, "default_popup": "popup.html" }, "default_locale": "zh_CN", "commands": { "highlight": { "suggested_key": { "default": "Alt+S" }, "description": "\u9ad8\u4eae\u9875\u9762\u5185\u5bb9" } } } |