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 qii404 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Double click on a word, the other same words in the page are automatically highlighted"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Highlight Word When Double Click एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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~ एक्सटेंशन की मूल जानकारी
| नाम | |
| 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"
}
}
} | |