Quickfind
highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.
Vad är Quickfind?
Quickfind är en Chrome-tillägg utvecklad av matthew, och dess huvudfunktion är "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.".
Tilläggsskärmbilder
Ladda ner Quickfind-förlängningens CRX-fil
Ladda ner Quickfind-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 ## Grundläggande Information om Tillägg
| Namn | |
| ID | dhamednoifcgcdpdoodioenmiakpccjo |
| Officiell webbadress | https://chromewebstore.google.com/detail/quickfind/dhamednoifcgcdpdoodioenmiakpccjo |
| Beskrivning | highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word. |
| Filstorlek | 41.68 KB |
| Antal Installationer | 400 |
| Aktuell Version | 1.3 |
| Senast Uppdaterad | 2016-01-09 |
| Publiceringsdatum | 2016-01-09 |
| Betyg | 3.57/5 Totalt 7 Betyg |
| Utvecklare | matthew |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |