Enhancements with Greasemonkey

Guest #1406585
Rate this post
useful
not useful
Greasemonkey is a Firefox (FF) extension that runs JavaScript code based 
on URL filters.
- Install Greasemonkey
- Drag script "<file>.user.js" and drop on FF
Scripts can be managed and edited via the Greasemonkey menu.
1
// ==UserScript==
2
// @name            mcnet
3
// @namespace       anonymous
4
// @version         0.1
5
// @description     menu fixed to screen in threads
6
// @include         http://www.mikrocontroller.net/topic/*
7
// @include         http://mikrocontroller.net/topic/*
8
// @include         http://www.embdev.net/topic/*
9
// @include         http://embdev.net/topic/*
10
// ==/UserScript==
11

12
GM_addStyle('.nav-container {position: fixed;}');

I would like to add a search field for the 'articles' (wiki) section 
underneath the menu and add some buttons to assist with writing messages 
(enclose selection with
1
[c][/c]
 for example. Insert special characters..

If you have something to contribute, I suggest just adding the code 
snippets to this thread enclosed in the "pre" tags explained in 
"Formatting options" on the "New post" page.

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now