s1m0n wrote:
Is it something I can make Opera load as a plug in, so the same happen whenever I render a page with valid abc? How would I go about that?
Nice idea! I just tried it, and it works!
Here is some documentation about Opera userjavascript:
http://www.opera.com/docs/userjs/using/#whatcando"To enable user JavaScript, use Settings > Preferences > Advanced > Content > JavaScript options, and select the directory where you will put your User JavaScript files. Opera will load all files in the specified directory whose names end with .js and will use them as User JavaScript files."
Go to
http://code.google.com/p/abcjs/, download abcjs_plugin_1.0.2-min.js (or whatever latest abcjs_plugin file is listed), and copy it to the directory for your Opera user javascript files you've set in opera with the step above.
That's it! Try viewing a page with abc notation. The notation must have an X: field.
Note that javascripts added to the Opera javascript folder will always load, for all sites, all pages. If you want to restrict the scope of the abcjs_plugin script to the C&F forums for instance, you need to edit it in a text editor, and add something like this to the top, before the comments of the script:
Code:
// ==UserScript==
// @include http://forums.chiffandfipple.com/*
// ==/UserScript==
You can have several lines with @include ... and @exclude .... expressions.