ユーザ名: パスワード: 新規登録
ウィジェット » Blogbar
Blogbar is a search widget that can search the web, the blogosphère, the social network, and more with the major search engines.
ページのトップからログインしコメントする
発言者 blogbar, # 2007/02/26 12:55:00
発言者 mail2rajeev, # 2007/02/23 21:08:51
Opera has released more tools and documentation for Widget developers. Read more...
ウィジェットに関する素晴らしいアイデアや、修正を要する問題については、ウィジェット・フォーラムへ。
発言者 blogbar, # 2007/02/26 12:55:00
can you make a widget by which mouseover event would genrate the ip address, location and the coordinates of the hyperlink..........
this is actually present in firefox as an add-on.
code for ur help:-
function hostipfox_enable() {
}
function hostipfox_disable() {
}
function hostipfox_init() {
if('__hostipfox__FillInHTMLTooltip' in window) return;
const prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces.nsIPrefService).getBranch(null);
var originalFillInHTMLTooltip = window.FillInHTMLTooltip;
window.__hostipfox__FillInHTMLTooltip = originalFillInHTMLTooltip;
const dnsService = Components.classes['@mozilla.org/network/dns-service;1'].getService(Components.interfaces.nsIDNSService)
const nsISupportsString = ('nsISupportsWString' in Components.interfaces) ? Components.interfaces.nsISupportsWString : Components.interfaces.nsISupportsString;
window.FillInHTMLTooltip = function(elem)
{
var retval = false;
if (!elem ||
elem.namespaceURI == 'http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul')
return false;
try {
if (elem) {
while (elem && (elem.nodeType != Node.ELEMENT_NODE || !elem.attributes.l
発言者 mail2rajeev, # 2007/02/23 21:08:51