Mark My Search

Highlight searched keywords. Find matches instantly.

什么是Mark My Search?

Mark My Search是由https://markmysearch.ator.systems开发的Chrome扩展程序,该扩展的主要功能是“Highlight searched keywords. Find matches instantly.”。

扩展截图

screenshot
screenshot
screenshot

下载Mark My Search扩展crx文件

下载Mark My Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Mark My Search Mark My Search
ID lijbnhoniejpjjgemoifpjklobhakinb
官方URL https://chromewebstore.google.com/detail/mark-my-search/lijbnhoniejpjjgemoifpjklobhakinb
简介 Highlight searched keywords. Find matches instantly.
文件大小 127 KB
安装次数 581
当前版本 1.14.2.1
更新时间 2023-12-25
上架时间 2022-05-17
评分 4.36/5 共11次评分
开发者 https://markmysearch.ator.systems
电子邮箱 [email protected]
付费类型 free
扩展官网 https://markmysearch.ator.systems/
帮助页面URL https://github.com/searchmarkers/mark-my-search/issues
隐私政策页面URL https://github.com/searchmarkers/mark-my-search/wiki/Privacy-Policy
支持的语言 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)"
        }
    }
}