Quickfind
highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.
ما هو Quickfind؟
Quickfind هو إضافة Chrome تم تطويرها بواسطة matthew، والميزة الرئيسية لها هي "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Quickfind
قم بتنزيل ملفات الامتداد Quickfind بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Highlight all occurrences of a specific word on a web page by alt + double clicking it or highlight a phrase by alt + selecting it.
This is really useful for skimming text or documentation.
## THIS EXTENSION IS IN DEV BETA ## معلومات أساسية عن التمديد
| الاسم | |
| ID | dhamednoifcgcdpdoodioenmiakpccjo |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/quickfind/dhamednoifcgcdpdoodioenmiakpccjo |
| الوصف | highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word. |
| حجم الملف | 41.68 KB |
| عدد التثبيتات | 400 |
| النسخة الحالية | 1.3 |
| آخر تحديث | 2016-01-09 |
| تاريخ النشر | 2016-01-09 |
| تقييم | 3.57/5 مجموع تقييمات 7 |
| المطور | matthew |
| نوع الدفع | free |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Quickfind",
"description": "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.",
"version": "1.3",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"32": "icon32.png",
"128": "icon128.png"
},
"author": "Matthew Moy",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"style.css"
],
"js": [
"jquery-2.1.4.min.js",
"search.js",
"findAndReplaceDOM.min.js"
]
}
]
} | |