För att prova de tusentals tillägg tillgängliga här, ladda ner Mozilla Firefox, ett snabbt och gratis sätt att surfa på webben!
StängVälkommen till Firefox tillägg.
Välj bland tusentals extrafunktioner och stilar för att göra Firefox till ditt.
StängRecensioner av Yet Another Remove It Permanently av AegisGFX
Betygsatt 5 utav 5 stjärnor
First off Im now in love, you are a genius. I tried for hours to write an Xpath for that site and got nowhere, and I'm a programmer too I just had no clue where to go with the syntax. As for making your plugin do keyword filtering, it would be amazing but I see now that the xpath would change dramatically for every different site so it might be impossible to come up with a generic way to filter elements based on keywords. There are addons that will block an entire page based on keywords, but I would say thats not an ideal solution if all you want to block is news that includes the word "Beiber" :)
Thanks for the addon, I'm gonna start trying to teach myself xpath syntax now!
Betygsatt 4 utav 5 stjärnor
I'd like to see keyword element blocking be made way more intuitive. The site I'm working on is here;
http://www.kijiji.ca/b-computer/saskatoon/page-3/c16l1700197
I'd like to block all tables that contain the word 'uniway' as they are spamming up the entire site with their junk. I still have not gotten it to work.
My instinct tells me to remove `table'-elements which contain `regular-ad' in their `class'-attribute:
//table[contains(@class,'regular-ad')]
What you're asking for is; to remove a `table'-element with the case-insensitive text `uniway' in the description-link:
//table[child::tbody/tr/td[@class='description']/a[contains(translate(.,'UNIWAY','uniway'),'uniway')]]
How to make creating an XPath more intuitive? What do the users want?
I guess the problem is really that I wouldn't use a dialog, which would allow me to modify an XPath in a number of different ways, myself. This is because I know "just enough" about XPath, to write them myself :)
Betygsatt 4 utav 5 stjärnor
Great addon, but is there any way to block elements based on keywords?
Denna recension är för en tidigare version av tillägget (0.3.4.1-signed.1-signed).If I understand you right, then yes, there is!
For example, I could remove any review mentioning `Great' on the yarip ` Reviews'-page, by using an XPath like this:
//div[starts-with(@id,'review-') and contains(child::p[@class='description'],'Great')]
För att skapa egna samlingar, måste du ha ett konto för Mozilla tillägg.