Mark My Search

Highlight searched keywords. Find matches instantly.

Vad är Mark My Search?

Mark My Search är en Chrome-tillägg utvecklad av https://markmysearch.ator.systems, och dess huvudfunktion är "Highlight searched keywords. Find matches instantly.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Mark My Search-förlängningens CRX-fil

Ladda ner Mark My Search-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

                        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äggande Information om Tillägg

Namn Mark My Search Mark My Search
ID lijbnhoniejpjjgemoifpjklobhakinb
Officiell webbadress https://chromewebstore.google.com/detail/mark-my-search/lijbnhoniejpjjgemoifpjklobhakinb
Beskrivning Highlight searched keywords. Find matches instantly.
Filstorlek 127 KB
Antal Installationer 581
Aktuell Version 1.14.2.1
Senast Uppdaterad 2023-12-25
Publiceringsdatum 2022-05-17
Betyg 4.36/5 Totalt 11 Betyg
Utvecklare https://markmysearch.ator.systems
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://markmysearch.ator.systems/
Hjälpsida URL https://github.com/searchmarkers/mark-my-search/issues
URL till Sekretesspolicy Sidan https://github.com/searchmarkers/mark-my-search/wiki/Privacy-Policy
Stödda Språk 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)"
        }
    }
}