Multi Find: Search and Highlight

Find and highlight multiple words on webpages. Count occurrences, scroll to the results and locate words with scrollbar marks.

O que é Multi Find: Search and Highlight?

Multi Find: Search and Highlight é uma extensão do Chrome desenvolvida por https://multifind.vgreco.fr, e sua principal característica é "Find and highlight multiple words on webpages. Count occurrences, scroll to the results and locate words with scrollbar marks.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Multi Find: Search and Highlight

Baixe arquivos de extensão Multi Find: Search and Highlight no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Multi Find allows you to smoothly search and highlight fragments, words or phrases within any webpage.

Multi Find is Unicode-friendly: it can handle non-English characters (Chinese, Japanese etc.) and special symbols. You can also turn on and off case or diacritic sensitiveness. It works on iframes and dynamically loaded content (regular webpage but also blogs, forums and even video subtitles).

What you see in the input box is what you get in the webpage, as the input box is formatted exactly like the result of the highlighting. An addition, the list of words can be manipulated through a toolbar.

Other notable features of Multi Find:
 - Four ways to fill the input box: by directly typing into it, by copying and pasting, by loading a text file or by selecting a word on the webpage and using the contextual menu (right-click).
 - Persistant list of words across different tabs, browser windows, and future sessions (local storage only, nothing is in the cloud)
 - Number of occurrences for each searched word and the total count
 - Navigation buttons to scroll through the occurrences of highlighted words
 - Scrollbar marks to easily locate the highlighted words within the page
 - Full customization of the interface (including dark theme) through persistent settings.                    

Informações Básicas da Extensão

Nome Multi Find: Search and Highlight Multi Find: Search and Highlight
ID dffaiikpbncahnghlfnkhagffaemhgfo
URL Oficial https://chromewebstore.google.com/detail/multi-find-search-and-hig/dffaiikpbncahnghlfnkhagffaemhgfo
Descrição Find and highlight multiple words on webpages. Count occurrences, scroll to the results and locate words with scrollbar marks.
Tamanho do Arquivo 141 KB
Contagem de Instalações 1,261
Versão Atual 1.63
Última Atualização 2024-01-29
Data de Publicação 2023-02-12
Classificação 4.47/5 Total de 17 Avaliações
Desenvolvedor https://multifind.vgreco.fr
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://multifind.vgreco.fr/
Idiomas Suportados en,en-GB,en-US,fr,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_man_name__",
    "default_locale": "en",
    "version": "1.63",
    "description": "__MSG_man_descript__",
    "permissions": [
        "storage",
        "webNavigation",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "background": {
        "service_worker": "sw.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "multi-find-element.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        },
        "toggle_ext": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "MacCtrl+Shift+X"
            },
            "description": "__MSG_man_highlights__"
        },
        "toggle_glow": {
            "description": "__MSG_man_softglow__"
        },
        "toggle_scroll": {
            "description": "__MSG_man_scroll__"
        },
        "toggle_diac": {
            "description": "__MSG_man_diac__"
        },
        "toggle_case": {
            "description": "__MSG_man_case__"
        },
        "add_select": {
            "description": "__MSG_man_addselect__"
        },
        "search_prev": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "MacCtrl+Shift+Left"
            },
            "description": "__MSG_man_prev__"
        },
        "search_next": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "MacCtrl+Shift+Right"
            },
            "description": "__MSG_man_next__"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "highlight.css"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ]
}