Redirector incelemeleri
Redirector geliştiren: Einar Egilsson
End User adlı kullanıcının incelemesi
5 üzerinden 4 puan
yazan: End User, 9 yıl önceDoes 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.
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.
384 inceleme
- 5 üzerinden 5 puanyazan: Stellan, 5 gün önce
- 5 üzerinden 5 puanyazan: Fabax, 7 gün önceEasy (and quite customizable too!) way to add parameters to URLs, if you can't/don't want to make a userscript.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19904250, 17 gün önce
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19898777, 20 gün önce
- 5 üzerinden 5 puanyazan: Dzhake, bir ay önce
- 5 üzerinden 5 puanyazan: Davide, bir ay önce
- 5 üzerinden 5 puanyazan: Kevin O'Mara, 4 ay önceThis add-on is perfect! I use it to redirect myself away from time-wasting websites.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 12389727, 4 ay önce
- 5 üzerinden 5 puanyazan: Squirrelly, 5 ay önceWorking great. If you have a site like youtube and you click a video/link and it doesn't redirect (or only works when you reload the page), you need to go to Advanced Options in your redirect, and add "History State" for when to apply it.
- 5 üzerinden 5 puanyazan: Firefox kullanıcısı 19590686, 6 ay önce
- 5 üzerinden 1 puanyazan: Firefox kullanıcısı 19415317, 7 ay önce
- 5 üzerinden 5 puanyazan: Sentry456123, 7 ay öncebetter than making a whole new extension just to redirect one website