Bookmark Highlighter のレビュー
Bookmark Highlighter 作成者: Carey Tilden
合計レビュー数: 17
- 5 段階中 3 の評価Firefox ユーザー 16681727 によるレビュー (4年前)I kind of like this addon. If only there wasn't a design negligence.
I very(!) much would like to have the option (checkbox) to disable the default styling via injected "style" attribute since it disrupts pages with e.g. images as anchor background. (I use stylish to style those myself.)
Thank you for your helpful addon. Keep up the good work. :-)
2021.09.28 - This addon will not work if the page contains some url like: mailto:name@email.com
You should check url format before run bookmark.search:
var pattern = new RegExp('^(https?:\\/\\/)?' + // protocol
'((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // domain name
'((\\d{1,3}\\.){3}\\d{1,3}))' + // OR ip (v4) address
'(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // port and path
'(\\?[;&a-z\\d%_.~+=-]*)?' + // query string
'(\\#[-a-z\\d_]*)?$', 'i'); // fragment locator
for (var i = 0; i < m.hrefs.length; i++) {
var href = m.hrefs[i];
if(!pattern.test(href))
continue;
try {
bookmarkSearches.push(browser.bookmarks.search({ url: href }));
} catch (error) {
console.log(error);
console.log(href);
}
}
Thanks. - 5 段階中 5 の評価Firefox ユーザー 5670363 によるレビュー (5年前)
- 5 段階中 5 の評価Firefox ユーザー 14701193 によるレビュー (6年前)Thank you very much.
This is great :3
=====================
Four Addons like this that are really great:
1. Visited link enabler
2. Gray visited links (use either this or that!)
3. Highlight bookmarks (This Addon)
4. Last visited Toolip - 5 段階中 5 の評価Firefox ユーザー 13095960 によるレビュー (7年前)Thank you for your excellent addon. But it seems it does not work on some types of links. Pls check the links on this page. https://sou.zhaopin.com/?jl=530 Could you make some improvements? Best wishes!
- 5 段階中 4 の評価Ahmmad Ismail によるレビュー (7年前)1 start missing because it does not work in some sites. I found the reason.
If the link is href="mysite.com/link1.html" Then it will work.
But, if the link is href="/link1.html" Then it will not work.
You can check it on https://www.lynda.com/subject/all
If you bookmark some of the links and refresh then the appearance will not change. Probably because the links do not contain the domain address. - 5 段階中 5 の評価Firefox ユーザー 5596421 によるレビュー (8年前)
- 5 段階中 4 の評価Firefox ユーザー 12957254 によるレビュー (8年前)The main reason I use firefox! The only problem is that it doesn't work in every site (toranoana for example).
開発者の返信
投稿日時: 8年前It looks like some links on your example site are being added after the extension has a chance to execute. I haven't been able to find a way to fix this problem, but if I do, I'll post another reply.