Sticky post
Saturday, December 11, 2010 3:56:49 AM
page, userjs, userscripts.org, download
...
My scripts/modifications (mostly in Russian) page (страничка моих скриптов и модификаций):
http://userscripts.org/users/208877/scripts.
My public extensions list:
https://addons.opera.com/en/addons/extensions/?query=ditherskyGitHub page:
https://github.com/DitherI still prefer to use UserJS and UserCSS as they provide compatibility with FF/Chrome GM scripts/css. And they are way more simple for inexperienced coder like me. Though extensions are good, because they are so user-friendly. So I'll be fixing part of my favorite UserJS to work as extensions if their functions doesn't degrade along the way.
Sticky post
Saturday, December 11, 2010 3:33:01 AM
opera, javascript, userjs, editing
...
Posted below are my modifications and extensions. All mods have been done just for my own convenience. Use any of them if you like but don't ask me for a new features. If you have a bug in some script - post JavaScript console log about it here and I'll try to fix it in a free time.
ExtensionsBlog posts:Readable JavaScript | Notify-it | [mod]
AutoPatchWork | [mod]
NoAds AdvancedRead more...
Friday, March 9, 2012 7:26:30 AM
opera, notifications, desktop, beta
...
Thinking about notifications... I've tried to add
Growl support with NPAPI plugin for a full-fledged (styles, sounds etc) desktop notifications from a lot of places (in extensions, widgets, userjs and pages).
The preliminary result is here:
growlit.exe (NSIS installer for v0.0.0.2).
MD5:
42bd08d84f84be3145e235518f274585 *growlit.exe
To use it you need to install latest
Snarl or
Growl, set
Allow network notifications and add password (
growlit for the test case). To install run the installer and point it to browser's NPAPI plugins folder.

Checked with the following page:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>GrowlIt</title>
<script>
var growl;
function init() {
growl = document.getElementById('plugin').GrowlIt('growlit'); // GrowlIt('password')
}
function test() {
growl.config("warn", "Lorem ipsum dolor sit amet, consectetur adipisicing elit.", "Test"); // type, text, title
var result = growl.show();
}
</script>
</head>
<body onload='init()'>
<object type='application/growlit' id='plugin' width='0' height='0'> </object>
<button onclick='test()'>TestMe</button>
</body>
</html>
Thursday, February 16, 2012 7:56:36 AM
translations, freedom, democracy
Перевод с
http://killacta.org:
- ACTA надолго зафиксирует в странах устаревшие копирайтные и патентные законодательства. Если общество захочет демократично установить менее строгие нормы, отражающие реальное состояние дел в Сети, ACTA будет мешать их реализовать.
- ACTA криминализирует пользователей, делая невинные некоммерческие ремиксы чуть ли не преступлениями "в особо крупных". Уже сейчас начинающие авторы могут достигнуть этих самых "крупных" благодаря популярным платформам вроде Youtube. ACTA, аналогично SOPA, означает угрозу будущим Джастинам Биберам всего мира сесть в тюрьмы.
- ACTA криминализирует обычные сайты, делая их ответственными за действия пользователей в форме "пособничества и подстрекательства". (art 2.14.4). Как и с SOPA, основатели сайтов могут быть оштрафованы или даже хуже, упрятаны за решётку, за нарушения авторских прав пользователями их ресурсов.
- ACTA позволит владельцам авторских прав использовать смехотворно раздутые предлоги для предъявления исков о возмещении убытков (основываясь на недоказанной идее, что каждая скачка данных равноценна потере денег от продаж). Будто текущих исков против отличных артистов, создателей роликов, студентов, домохозяек и различных некоммерческих проектов им не достаточно.
- ACTA закрепит за "Комитетом ACTA" постоянное право обходить демократию под предлогом "внедрения поправок к ACTA" (art 6.4). Другими словами ACTA выдаёт "чек на неуказанную сумму" будущим комитетам. Такие возможности идеально подходят для заключения скрытых договорённостей между сторонниками SOPA, вроде MPAA.
- Торговые соглашения это рай для тех, кто хочет создать лазейку в законодательстве и тех, кто под видом законности хочет обойти демократичность. Это закулисный процесс, который подогнан специально для завязанных политически компаний. Стоят ли за этими актами киностудии? В этом они доки. Если мы не сможем сделать закулисные торговые соглашения труднее к принятию, чем закон в США, наше будущее окажется в руках лоббистов, стоящих за SOPA.
Оригинал: La Quadrature du Net.
Monday, February 13, 2012 4:46:50 PM
napilnik, tabs, annoying, patch
...
It's sooooo annoying.

I hate it and wish developers add an option to disable it via opera:config. It is pretty much possible. To check non-tab-stacking goodness you need to replace this data (in
regexp format):
FF 75 08 E8 (.{4}) 8B F8 3B FB 74 (.) 53 57 E8 (.{4}) 85 C0 74to this:
FF 75 08 E8 $1 89 DF 3B FB 74 $2 53 57 E8 $3 85 C0 74
in some well known dll and see the result. Tested on 12 and late 11 builds.
It's convenient to download perl or its main module from
http://www.mediafire.com/?r4aggm8fbgbtzcm and run
patch (commenting off unneeded parts):
perl -W -f -- "fix.pl"
Monday, February 6, 2012 9:42:43 AM
notifications, helper, extension, programming
...
Extension (Opera 12 only):
https://addons.opera.com/en/addons/extensions/details/notify-itНаписал небольшое расширение-помощник для оповещения пользователя о событиях из других расширений.
I have wrote a small helper extension for other extensions to notify user about something.
Project repository // Репозиторий проекта:
https://github.com/Dither/notify-itUsage example: // Применение:document.addEventListener("DOMContentLoaded", function() {
// At first we must initialize message object and assign its attributes.
var message = {
extension: 'my-extension', // mandatory extension name
text: 'Message #', // message text
type: 'error', // message type
expire:-1, // expiration time: never expire
};
// Then send CustomEvent named 'Notify.It' to the current document.
var evt = document.createEvent('CustomEvent');
evt.initCustomEvent('Notify.It', false, false, message);
document.dispatchEvent(evt);
}, false);
Monday, January 30, 2012 5:15:56 AM
faq, github, extensions, opera
Скачиваем архив расширения из репозитория на
github:

Перетаскиваем на окно Оперы файл config.xml из распакованной, к примеру
7zip-ом, папки расширения. Распаковать можно в любое удобное место на диске:

Теперь расширение должно появиться в списке из меню:
Расширения -> Управление расширениями -> Режим разработчика.
Чтобы можно было быстро обновить расширение с гитхаба можно поставить
TortoiseGit.
Saturday, January 28, 2012 3:31:39 AM
opera, modifications, extension
Extension:autopatchworkopera-1.9.5b.oex
I've modified AutoPatchWork for additional functionality and stability. The new stuff:
- custom SITEINFO patterns in JSON-format;
- changed the interface, statusbar and separator pages;
- you can manually configure CSS for the separator and the statusbar;
- fixed bugs in SITEINFO-manager;
- fixed method of storing settings to the Opera's native (less bugs with the settings);
- fixed browser detection method;
- optionally location reflects currently loaded page;
- new page URL can now be retrieved in AutoPatchWork.DOMNodeInserted event handler.
I hope original's author will add it to the main branch. And if no, there is always here.

You can install developer version from github by dragging config.xml from extension root folder to the Opera window.
Project repository / Репозиторий проекта:
https://github.com/Dither/autopatchwork-operaRead more...
Friday, May 27, 2011 9:20:00 AM
opera, modifications, beta, extension
...
Расширение было опубликовано Gemorroj'ем в официальном каталоге расширений Оперы. Все дальнейшие вопросы в комментариях и багрепортах по этой ссылке. Эта запись останется только в исторических целях и для персональных модов.Extension (Opera 11.10+ only): noads-advanced-1.3.2b.oexAdded support of URL filter API and corresponding subscriptions, export settings as files and Opera MagicFunction/MagicVariable blocker support. Sure-kill until they actually fix something instead of
display:none to block ads by selectors.
Добавлены экспорт настроек в виде файлов, Оперовская MagicFunction/MagicVariable для блокировки заданных функций/переменных и поддержка URL filter API: максимум, что можно выжать из Оперы пока не придумают аналога или не вернут старое поведение CSS атрибута
display:none.
FAQ / ЧаВо:
https://github.com/Dither/noads-advanced/wiki/Project repository / Репозиторий проекта:
https://github.com/Dither/noads-advancedRead more...
Monday, May 2, 2011 8:10:55 PM
chrome, images, customization, skin
...
"Like Chrome" skin for
Opera. Don't know why it looks so fu__ed up on new Next installations. Is it about fonts or font sizes maybe? How am I supposed to debug that?!
opera_like_chrome.zip
"µtiful!" skin for
uTottent, can't download it from uTorrent skins repository somehow.
uTorrent.zip
Tuesday, March 22, 2011 8:30:56 PM
opera, tool, javascript, extension
Extension for auto-formatting of JavaScript code.It is triggered by clicking yellow popup which appears on top of a page for files with .js extension in their URL. Also you can call simple JavaScript formatter using extension's toolbar button. The button can be disabled in preferences.
This extension supports optional syntax highlighting based on Google's CodePrettify parser but it is
very slow and sometimes hurts my eyes with strange guessing so personally I don't recommend to enable it.
Read more...
Thursday, December 16, 2010 5:42:17 PM
lold, opera
Я бы обновил, но надо убедиться, что согл это не заморское ругательство. И почему "щелч
ек", а не "щелч
ок", может это как-то связано со щелями, чеками и Фрейдом? Ну а сначала принять, и только потом уже обновить, это так по русски! x_X
1 2 Next »