-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Doublicate Items From Array #30
Comments
Good idea, Mariano, I'll keep that in mind when I'm doing the next round of improvements. In the mean time you can enable caching on the options page of the extension, and that will prevent it from checking links which are known to be working ok (which should speed up page checks significantly). Paul Livingstone
|
for a quick fix for me i just added this to the file "check.js" at round line 190 else{
queued +=1;
blacklist.push(url); // added this line
link.classList.add("CMY_Link");
checkURL(url, link);
} I add an item to the blacklist array - this way a url is counted and checked only once |
Good idea, To continue down that path, let's say there is a 404 link (http://notreal.ex) in multiple places within the DOM. By only checking the link once the classes As a result, there would need to be a modification to the -Kyle |
Could you please include a dublicate url check in the current / future release? When I edited the files Chrome warned me that the plugin is not valid / is broken. |
This can be done. Filter pageLinks to only unique links based on the link.href attribute. Just make sure that when updating the UI, update all instances of the link.href in the DOM with the linkStatus and warnings. |
It would be great if it could be an option in the config screen - and in the main branch :-) |
Hi,
I absolutely love this extension... BUT
The extension seems to check doublicate URLs / Links which are on a given page - it would be handy to have a option / feature that turns this off/on
Thanks a LOT
mariano
The text was updated successfully, but these errors were encountered: