Redirector 的評論
Redirector 作者: Einar Egilsson
23 筆評論
- 評價 4 分,滿分 5 分來自 Firefox 使用者 17728939,5 個月前
- 評價 4 分,滿分 5 分來自 erik1984,5 個月前
- 評價 4 分,滿分 5 分來自 Rick-0,9 個月前This works very well, but you DO have to look for how to use regular expressions without direct links to instructions.
The author/maintainer seems to have passed away sometime between 12/2021 and 9/2022, so unless/until someone else takes over, I'd say no more updates. - 評價 4 分,滿分 5 分來自 Ivan,1 年前Dark theme makes redirect statuses confusing. Brain expects that brightened sections are enabled and darkened are disabled, in actuality it's text colors that show that.
- 評價 4 分,滿分 5 分來自 juan riccio,1 年前THANKS for this extension! I use to avoid the "new" Reddit and its click traps - I much prefer the old.reddit site.
The extension works, but it's a little difficult to use - which is all right: given the power it gives us, it's only normal we have to learn a bit about wildcards or regexps.
BUT I have a request: a link to the HELP page in the ADD REDIRECT page. It's unconvenient to have to close the editing tab just to look at help for syntax etc. Just my 2 cents. - 評價 4 分,滿分 5 分來自 pOison.by,2 年前Заменяет url только в адресной стране, если будет встречаться в коде страницы, замены не будет!
- 評價 4 分,滿分 5 分來自 Craig,3 年前
- 評價 4 分,滿分 5 分來自 circcc,3 年前bug:
"Enable notification" setting is not remembered when I restart Firefox. - 評價 4 分,滿分 5 分來自 Firefox 使用者 14436062,5 年前
- 評價 4 分,滿分 5 分來自 Angel Hdz,5 年前I tried every possible regex combination. No redirects. Firefox Quantum. Restarted firefox same issue.
Update: I was using the regex plus sign "+" of "matches preceding pattern element 1 or more times", so when I was about to give up, decided trying the asterisk "*" "matches preceding pattern element 0 or more times" and it worked right away.
I wonder why the plus sign doesn't work. - 評價 4 分,滿分 5 分來自 Azazello,5 年前
- 評價 4 分,滿分 5 分來自 Firefox 使用者 13898859,5 年前
- 評價 4 分,滿分 5 分來自 Adrian,5 年前Great extension, i used it to redirect www.reddit.com into i.reddit.com (Reddit is blocked on my country). The only minor problem for this extension is the logo colour, it has exactly the same colour as the new "Quantum" dark theme. Would be nice if you could add an outline on the logo :)
- 評價 4 分,滿分 5 分來自 Firefox 使用者 13486413,6 年前
- 評價 4 分,滿分 5 分來自 Llewen,6 年前It works, but it doesn't rewrite link urls. You either have to open them in a new tab, or copy and paste the url into the address bar. At least that's how it worked on the broken website I was trying to fix.
I see my issue is discussed below. Added two stars... - 評價 4 分,滿分 5 分來自 hexalm,6 年前Just installed, love the regex option, makes it easy to define rules (once you've tackled learning regex - try regexr.com to test and learn, helped me tons). Will update after some actual use. :)
開發者回應
張貼於 6 年前Glad you like it. I'll try to support Android better some day when I have an Android device. Also, pull requests are welcome if someone else wants to implement it. - 評價 4 分,滿分 5 分來自 deviant2,6 年前when :
rightclick -> save link as
the URL/address still like that ...
andOR something like : redirector -> then send to download manager
i do really need this ... so i use : rightclick -> save link as
but it doesnt worked ...
its only worked when :
rightclick -> open new tab/window - 評價 4 分,滿分 5 分來自 End User,6 年前Does not work correctly with nested brackets.
For example, if you want to eradicate youtube playlists, you'd better locate &list parameter and rebuild the URL without it.
Rather than identifying all parameters for careful string composition.
E.g.
(https?://)?(www\.)?youtube\.com/(watch\?)?((&?v=[^&]*)|(([&#]t=([\d]*h)?)([\d]*m)?([\d]*s?))|(&?index=[\d]*)|(&?list=[^&]*))*
has nested parentheses which are not parsed correctly by this extension.
I'd propose to use
(https?://)(www\.)youtube.com/watch\?(.*)(&?list=[^&]*)(.*)
with this replacement
$1$2youtube.com/watch?$3$5
This way parameter &index= will remain, but won't have any effect.
And the result will be removal of &list parameter which I am talking about. - 評價 4 分,滿分 5 分來自 Firefox 使用者 5974346,7 年前Used it to force firefox to use port 8080 instead of 80 for a specific site. At first it seemed to work alright, but then I saw that when submitting form data it doesn't perform the redirect.