Mark My Search

Highlight searched keywords. Find matches instantly.

Hvad er Mark My Search?

Mark My Search er en Chrome-udvidelse udviklet af https://markmysearch.ator.systems, og dens hovedfunktion er "Highlight searched keywords. Find matches instantly.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Mark My Search-udvidelses-CRX-fil

Download Mark My Search-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Mark My Search is a complete word finder for anything you search online. Powerful highlighting and advanced features combine with a friendly, intuitive interface to provide effortless text finding without the compromise. Vibrant highlight colors look great on any page, complemented by scroll markers for locating matches and a keyword edit bar which stays until you're done. Shortcuts are available for every action while varied options let you personalise to your taste.

Search for anything, on any search engine - DuckDuckGo, Google, Bing, even Reddit - and Mark My Search will pick out the words you're looking for, in that page and through any links you follow. Highlighting happens without having to press a button! Activate on any page using Alt+M or the context menu.

Mark My Search is Free and Open Source on GitHub(1). See the Roadmap(2) for planned improvements!

1. https://github.com/searchmarkers/mark-my-search
2. https://github.com/searchmarkers/mark-my-search/discussions/108

⎻⎻⎻⎻ Features & Productivity ⎻⎻⎻⎻

Main Features:
•	Enter keywords to find in the page
•	Create and automate keyword lists in the popup
•	Search query highlighting on any search engine
•	Compact toolbar to view and edit the query
•	Popup and settings menu for configuration
•	Rapid scrolling to matches
•	Keyword scrollbar markers
•	Completely operable by mouse or keyboard
•	Specific websites can be filtered

Matching Options:
•	Case sensitivity
•	Whole words only
•	Word stemming (match all word forms)
•	Diacritics sensitivity (match accents)
•	Regular expression

Current Limitations:
•	Sites may reorder text containing highlights; a workaround is available in settings
•	Word stemming can result in unexpected matches

⎻⎻⎻⎻ Accessibility ⎻⎻⎻⎻

To turn off visibility for automatic highlighting, simply open the options page at chrome://extensions > Mark My Search [Details] > [Extension options] and disable both visibility settings. The highlights will be hidden, while the toolbar and scroll markers remain visible, ready to be shown at a moment's notice. This does not apply to manually activated highlighting.

To turn off automatic highlighting completely, click the extension's icon to open the popup, and disable "Detect search engines".

You may wish to press the top-right puzzle piece (Extensions) and 'pin' the Mark My Search icon, so that you can easily click it to open the popup.

To assign more shortcuts, visit chrome://extensions/shortcuts                    

Grundlæggende oplysninger om udvidelsen

Navn Mark My Search Mark My Search
ID lijbnhoniejpjjgemoifpjklobhakinb
Officiel URL https://chromewebstore.google.com/detail/mark-my-search/lijbnhoniejpjjgemoifpjklobhakinb
Beskrivelse Highlight searched keywords. Find matches instantly.
Filstørrelse 127 KB
Antal Installationer 581
Nuværende Version 1.14.2.1
Senest Opdateret 2023-12-25
Udgivelsesdato 2022-05-17
Bedømmelse 4.36/5 Samlet 11 Bedømmelser
Udvikler https://markmysearch.ator.systems
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://markmysearch.ator.systems/
Hjælpeside-URL https://github.com/searchmarkers/mark-my-search/issues
URL til Fortrolighedspolitik Side https://github.com/searchmarkers/mark-my-search/wiki/Privacy-Policy
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mark My Search",
    "description": "Highlight searched keywords. Find matches instantly.",
    "version": "1.14.2.1",
    "icons": {
        "16": "\/icons\/dist\/mms-16.png",
        "32": "\/icons\/dist\/mms-32.png",
        "48": "\/icons\/dist\/mms-48.png",
        "128": "\/icons\/dist\/mms-128.png"
    },
    "permissions": [
        "tabs",
        "scripting",
        "storage",
        "search",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "\/dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/dist\/include\/utility.js",
                "\/dist\/include\/pattern-stem.js",
                "\/dist\/include\/pattern-diacritic.js",
                "\/dist\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "\/pages\/options.html",
        "browser_style": true
    },
    "action": {
        "default_icon": {
            "16": "\/icons\/dist\/mms-16.png",
            "32": "\/icons\/dist\/mms-32.png"
        },
        "default_title": "Mark My Search",
        "default_popup": "\/pages\/popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/dist\/paint.js",
                "\/icons\/arrow.svg",
                "\/icons\/close.svg",
                "\/icons\/search.svg",
                "\/icons\/show.svg",
                "\/icons\/refresh.svg",
                "\/icons\/create.svg",
                "\/icons\/delete.svg",
                "\/icons\/edit.svg",
                "\/icons\/reveal.svg"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "open-popup": {
            "description": "Open the popup"
        },
        "open-options": {
            "description": "Open the options page"
        },
        "toggle-research-tab": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Find in current tab"
        },
        "toggle-research-global": {
            "description": "Enable\/disable automatic web search marking"
        },
        "toggle-bar": {
            "description": "Show\/hide toolbar"
        },
        "toggle-highlights": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Show\/hide highlighting"
        },
        "toggle-select": {
            "description": "Enable\/disable sticky keyword jumping mode"
        },
        "focus-term-append": {
            "description": "Focus input for appending a keyword"
        },
        "terms-replace": {
            "description": "Replace keywords with detected search keywords"
        },
        "step-global": {
            "description": "Step to and select next highlight"
        },
        "step-global-reverse": {
            "description": "Step to and select previous highlight"
        },
        "advance-global": {
            "suggested_key": {
                "default": "Alt+Space"
            },
            "description": "Jump to next highlight block"
        },
        "advance-global-reverse": {
            "suggested_key": {
                "default": "Alt+Shift+Space"
            },
            "description": "Jump to previous highlight block"
        },
        "select-term-0": {
            "description": "Jump to next (1st keyword)"
        },
        "select-term-1": {
            "description": "Jump to next (2nd keyword)"
        },
        "select-term-2": {
            "description": "Jump to next (3rd keyword)"
        },
        "select-term-3": {
            "description": "Jump to next (4th keyword)"
        },
        "select-term-4": {
            "description": "Jump to next (5th keyword)"
        },
        "select-term-5": {
            "description": "Jump to next (6th keyword)"
        },
        "select-term-6": {
            "description": "Jump to next (7th keyword)"
        },
        "select-term-7": {
            "description": "Jump to next (8th keyword)"
        },
        "select-term-8": {
            "description": "Jump to next (9th keyword)"
        },
        "select-term-9": {
            "description": "Jump to next (10th keyword)"
        },
        "select-term-0-reverse": {
            "description": "Jump to previous (1st keyword)"
        },
        "select-term-1-reverse": {
            "description": "Jump to previous (2nd keyword)"
        },
        "select-term-2-reverse": {
            "description": "Jump to previous (3rd keyword)"
        },
        "select-term-3-reverse": {
            "description": "Jump to previous (4th keyword)"
        },
        "select-term-4-reverse": {
            "description": "Jump to previous (5th keyword)"
        },
        "select-term-5-reverse": {
            "description": "Jump to previous (6th keyword)"
        },
        "select-term-6-reverse": {
            "description": "Jump to previous (7th keyword)"
        },
        "select-term-7-reverse": {
            "description": "Jump to previous (8th keyword)"
        },
        "select-term-8-reverse": {
            "description": "Jump to previous (9th keyword)"
        },
        "select-term-9-reverse": {
            "description": "Jump to previous (10th keyword)"
        }
    }
}