Highlighter for Google Chrome™
Highlight your text right in the webpage.
Make permanent, private highlights on any web page.
Review user movement across collected snapshots.
View collected rating snapshots from the latest 7-day window to assess rating stability.
Compare 1-day, 7-day, and 30-day net growth and growth rate.
Review publication date, version, supported languages, and crawl timestamps.
Review the store description, core capabilities, and common use cases.
IMPORTANT. READ THIS FIRST
If the extension causes slowness issues, especially in combination with large, preexisting highlight collections, I recommend *disabling* (not removing) the extension until an update is ready, unless you have a backup.
Read the support/help documents for more information. Please be patient, I'm working my way through teething issues as fast as possible.
DESCRIPTION
This extension lets you make highlights on any web page, and subsequently attempts to restore those highlights when you revisit the page.
This process is completely private. The location and contents of your highlights never leave your browser.
Inspect the latest comments and rating distribution.
Store average score: 3.9. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.
Review related products from the Chrome Web Store detail page.
Highlight your text right in the webpage.
Best highlighting tool for Website and PDF. FREE and easy to use.
Productivity Highlighter & Annotation Tool for Websites & PDFs with AI Summary - free, easy to use, no sign-up required.
Highlight occurrences of selected text, with or without a keypress.
Highlight text on websites with a simple right-click or keyboard shortcut. Saves highlights on your device.
Make creating ,viewing and managing highlight easier
Love this, i found it really useful during exams that uses Google forms, sometimes i choose an answer and change it by accident without noticing while scrolling, so it helps in re checking the answers, i also use it to mark answers, like the highlight color red for "convinced that this is the answer" and yellow for "not sure about this"
I wish we could have a set of folders that are unlimited and the folders could be found specifically for finding which notes were part of the subject and which weren't. Along with that, I wish you could add note taking for the highlighting because it would be helpful and much better.
very useful
yes, it very simple, and i like simple, easy to use
Does not work!
love it! thank you!
Not working
有的网页用不了,比如百度百科、知乎等。作者能不能优化一下?
Not Working
Thanks for this, great bit of software. I had to hack it to make it work on medium though, due to their id's starting with numbers (which for some reason require unicode escaping (\3). Couldn't figure out how to report it, so here's the one line fix. - if (node.ownerDocument.querySelectorAll(`#${node.id}`).length === 1) { + // Need to escape leading digits in id's.. See https://mathiasbynens.be/notes/css-escapes + // If the first character of an identifier is numeric, you’ll need to escape it based on its Unicode code point. For example, the code point for the character 1 is U+0031, so you would escape it as \000031 or \31 . + // Basically, to escape any numeric character, just prefix it with \3 and append a space character ( ). Yay Unicode! + if (node.ownerDocument.querySelectorAll(`#${node.id.replace(/^(\d)/,'\\3$1')}`).length === 1) {