Attachment 'TexttoBloglines0.1.user.js'
Download 1 // ==UserScript==
2 // @name TexttoBloglines
3 // @description Web Text to Bloglines
4 // @namespace http://www.donews.net/changzheng
5 // @include *
6
7 //by Breeze (http://www.donews.net/changzheng)
8 // ==/UserScript==
9
10
11 function openSaveWindow()
12 {
13 var url = "http://bloglines.com/saveitem?mode=0"
14
15 window.open( url,'ModifySubscription','toolbar=no,status=no,scrollbars=yes,location=no,menubar=no,directories=no,width=520,height=600');
16 }
17
18 var div = document.createElement("DIV");
19 div.style.position = "fixed";
20 div.style.right = "80px";
21 div.style.bottom = "0px";
22 div.style.visibility = "visible";
23 div.style.width = "16px";
24 div.style.height = "16px";
25 div.style.cursor = "hand";
26 div.style.cursor = "pointer";
27 div.innerHTML = "<img src='http://bloglines.com/images/sub_modern5.gif'>"
28 div.onclick = function()
29 {
30 openSaveWindow();
31 }
32 document.documentElement.appendChild(div);
33 /*if (window == top) {
34 GM_registerMenuCommand("TexttoBloglines", openSaveWindow);
35 }*/
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.