Latest Threads

Forum Statistics
  • Forum posts:1 115
  • Forum threads:183
  • Members:1 172
  • Latest member:flowtraveljo


Posted by: Ashus
21.10.2013 05:47
Forum: Opera Blink extensions
- No Replies

My creation from scratch.

  • enter any URL and no matter what would happen otherwise, it _will_ be downloaded (ignoring PDF or any other plugins)
  • requests are monitored, scanned for video or audio media files, links are automatically added to recent media list of 10
  • it can be safely used to download videos from trailers.apple.com or any sites using embedded mp4 files
  • no, youtube is not supported as it doesn't send complete files
  • multilingual (EN/CZ), more translations are welcome

.crx Force Download 1.08.crx Size: 30,91 KB  Downloads: 2765


   
Verified and published on Chrome extensions (also for Vivaldi) or Opera extensions.

Print this item


Posted by: Ashus
24.9.2013 05:11
Forum: Opera Blink extensions
- No Replies

Fixes the Easy Auto Refresh extension.

  • removed tracking code
  • removed unclickable icon from omnibar displayed on opera:// pages
  • icons in omnibar changed to something more fitting to Opera (gray/red)
  • default timeout changed from 10 sec to 300 sec (=5 min)
  • registration and full functionality retained (not cracked)


[Image: IHjhiN3S2-lEMF3-ObPsRshFlys2Johu7IRyYRRc...00-e365-rw]

To install, drag and drop to Opera, then enable extension.

Print this item


Posted by: Ashus
24.9.2013 04:33
Forum: Opera Blink extensions
- No Replies

Remade the Close Tab Button extension (not published anymore, it was distributed with manifest v.1).

  • it is a button!
  • it closes current tab
  • it is a button that doesn't move (well if you download something it moves a tiny bit..), mimics MDI close button
  • you don't need to look for the correct X to close current tab
.nex Close Tab Button 0.2.nex Size: 1,58 KB  Downloads: 393


To install, drag and drop to Opera, then enable extension.
Until Opera developers implement reordering of extensions, you have to do the following to make it move to the right:
  • make a backup of Preferences file from profile dir
  • open the file in notepad
  • find "toolbar": [ - reorder the list to make this extension the last in the list
  • save it

Print this item



Posted by: Ashus
24.9.2013 03:38
Forum: Opera Blink extensions
- No Replies

Fixes the Image Properties Context Menu.

  • popup window is opened correctly sized and positioned

[Image: UMDTQhk72GGzVaAq_WOV_GbZ1mosSS7w8Y3oYqLi...00-e365-rw]

To install, drag and drop to Opera, then enable extension.

Print this item


Posted by: Ashus
29.8.2013 05:10
Forum: Opera Blink extensions
- No Replies

Enables you to download extensions from https://chrome.google.com/webstore/ directly to Opera.
To install chrome extensions, click the extension title in detailed view, the download will begin, then you just need to enable it manually as it is from unofficial source.
Some extensions will work, others won't. It is certainly a lot bigger than Opera's default extension repository.

Updated on 28.11.2013 (HTML code of chrome store changed).

To install, drag and drop to Opera, then enable extension.

Print this item


Posted by: Ashus
19.7.2013 03:24
Forum: Opera Blink extensions
- No Replies

Fixes the Chromium Wheel Smooth Scroller extension.

  • wheel icon from extension bar removed
  • made to work in opera:// internal pages - disabled by Opera

[Image: zJ3pGQeR4TFw22oD7cwlsBbzyi8yV4-kz8MiGyeI...00-e365-rw]

To install, drag and drop to Opera, then enable extension. Enable Extensions on opera:// URLs in opera://flags .

Print this item


Posted by: Ashus
19.7.2013 02:19
Forum: Opera Blink extensions
- No Replies

Fixes the Smooth Gestures extension.

  • removed unclickable icon from omnibar displayed on opera:// pages
  • removed internal bookmarks integration (generated errors)
  • ready to work in opera:// internal pages - disabled by Opera

[Image: Bns47IqTVz29RzFDjP9NaWWnJbWd4wIhtLcnKoP_...00-e365-rw]

To install, drag and drop to Opera, then enable extension. Disable internal gestures in Opera settings so they do not collide. Enable Extensions on opera:// URLs in opera://flags .

Code:
chrome.extension.sendMessage({_messageType: 'disable-support'});  

Print this item


Posted by: Ashus
25.6.2013 07:15
Forum: PHP scripts
- No Replies

Pokud je nutné změnit přihlášeného uživatele pro větší množství systémů a používá se HTTP autentifikace pomocí webserveru (např. pomocí .htpasswd nebo LDAPu konfigurovaného v .htaccess), můžete provést reautentifikaci tímto způsobem, aniž byste zavírali prohlížeč nebo používali tlačítko zpět. Způsoby jako přesměrování na neexistujícího uživatele ve formátu http ://uživatel@server/ se ukázaly liché, protože prohlížeče v URL uživatele nechávají a pak se na údaje ptají na každé stránce. Redirect pomocí header taky není možný, protože pak prohlížeč nemá důvod čekat na nové údaje. Spolehlivě se pouze odhlásit nelze (omezení HTTP).

Celou složku/subdoménu máme zaheslovanou pomocí účtů v .htpasswd.

logout.php

PHP Code:
session_start();
if ((!isset(
$_SESSION['HTTP_REMOTE_USER'])) || ($_SESSION['HTTP_REMOTE_USER'] == $_SERVER['REMOTE_USER']))
 
   {
 
   header('WWW-Authenticate: Basic realm="Pokud neprovedete nove prihlaseni, zustane prihlasen \''.$_SERVER['REMOTE_USER'].'\'."');
 
   header('HTTP/1.1 401 Authorization Required');
 
   }

$_SESSION['HTTP_REMOTE_USER'] = $_SERVER['REMOTE_USER'];

echo 
'<meta http-equiv="refresh" content="0;URL=./">'

Print this item


Posted by: Ashus
12.6.2013 08:45
Forum: Opera Blink extensions
- No Replies

Fixes the Yet Another Google Bookmarks Extension to work in Opera 15+.

Omnibar default search feature disabled. This change fixed an error and made the extension load bookmarks on startup correctly.

[Image: mDWUkWdVIhM-5RAHhTqlddKYTZjkGkODSNJSTxZg...00-e365-rw]

To install, drag and drop to Opera, then enable extension.

Print this item