Shqyrtime për Bookmark Highlighter
Bookmark Highlighter nga Carey Tilden
17 shqyrtime
- Vlerësuar me 3 yje nga 5 të mundshëmnga Reviewer1, 3 vite më parëDoes not work on youtube and certain PDFs or html files.
- Vlerësuar me 5 yje nga 5 të mundshëmnga mpliax, 4 vite më parë
- Vlerësuar me 3 yje nga 5 të mundshëmnga 16681727 përdoruesi Firefox-i, 4 vite më parë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 - Vlerësuar me 4 yje nga 5 të mundshëmnga Moneky, 5 vite më parë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. - Vlerësuar me 5 yje nga 5 të mundshëmnga 5670363 përdoruesi Firefox-i, 5 vite më parë
- Vlerësuar me 1 yje nga 5 të mundshëmnga Alexander, 5 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga Arcadia, 6 vite më parëThis is great! Exactly what I was looking for. I'm having some trouble changing the border around image links though. I'm trying to make it larger and more noticeable but nothing worked. Do you have any code that you know would help with this?
- Vlerësuar me 3 yje nga 5 të mundshëmnga morris, 6 vite më parëDoesn't work with frames. If page contains
- Vlerësuar me 5 yje nga 5 të mundshëmnga Hermit, 6 vite më parë
- Vlerësuar me 5 yje nga 5 të mundshëmnga 14701193 përdoruesi Firefox-i, 7 vite më parë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 - Vlerësuar me 5 yje nga 5 të mundshëmnga 13095960 përdoruesi Firefox-i, 7 vite më parë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!
- Vlerësuar me 4 yje nga 5 të mundshëmnga Ahmmad Ismail, 8 vite më parë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. - Vlerësuar me 4 yje nga 5 të mundshëmnga vidigal, 8 vite më parëGood Idea... Unluckly the site where i need this (github search pages) handle pagination via ajax, so i need to reload on each subsequent page to get it work. Probably you should use a delegate event attached to the body to resolve this issue.
- Vlerësuar me 5 yje nga 5 të mundshëmnga 5596421 përdoruesi Firefox-i, 8 vite më parë
- Vlerësuar me 2 yje nga 5 të mundshëmnga Lumania, 8 vite më parëIf you have a lot of bookmarks this extension will cause Firefox to basically hang for seconds to minutes. If it wasn't for that this would be a 4 star extension.
- Vlerësuar me 4 yje nga 5 të mundshëmnga 12957254 përdoruesi Firefox-i, 8 vite më parëThe main reason I use firefox! The only problem is that it doesn't work in every site (toranoana for example).
Përgjigje zhvilluesi
postuar më 8 vite më parë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.