Yes, I know it's been asked a million times, but not recently enough. I've read inconclusive articles around the web that Linux support was dropped from the scope. Is this true? I'm asking purely out of curiosity as it's been quite a while since I've completely switched to Chrome.
Best posts made by veggen
-
Is Linux support ever coming?Opera for Linux
Latest posts made by veggen
-
Is Linux support ever coming?Opera for Linux
Yes, I know it's been asked a million times, but not recently enough. I've read inconclusive articles around the web that Linux support was dropped from the scope. Is this true? I'm asking purely out of curiosity as it's been quite a while since I've completely switched to Chrome.
-
Why is my Bookmarks importer tool disabled?Opera for Windows
On one computer, using v17 Next, I imported bookmarks as expected and they show up nicely in Quick Access Bar. When v17 went stable I copied the profile and everything worked fine. On the second computer, I've just installed v17 stable and the importer is for some reason disabled. What happened to it? Can I enable it?
-
RE: Can I ignore target attribute?Opera for Windows
I've ended up installing Violent monkey extension and making my own script for this. In case someone cares, the source is:
// ==UserScript== // @name Ignore link target // @author veggen // @description Ignores the target attribute on links. // @version 0.1 // @include * // ==/UserScript== [].forEach.call( document.querySelectorAll('a[target]'), function(targettedLink){ targettedLink.removeAttribute("target"); } );
-
Can I ignore target attribute?Opera for Windows
Is there a way in new Operas to ignore the target attribute of links (to prevent opening in new tabs)?