firegestures 画像検索スクリプト
var srcNode = FireGestures.sourceNode;
var imgURL = getComputedStyle(srcNode, '').getPropertyValue('background-image');
if (imgURL == 'none')
imgURL = FireGestures.getImageURL(srcNode);
else
imgURL = imgURL.replace(/"|'/g,"").replace(/url(|)$/ig, "");
if (!imgURL)
throw "Not on a image";
// check the URL is safe
FireGestures.checkURL(imgURL, srcNode.ownerDocument);
imgURL = 'http://www.google.com/searchbyimage?image_url='
+ encodeURIComponent(imgURL) + '&num=10'
// open image in new tab
var background = gPrefService.getBoolPref("browser.tabs.loadInBackground");
if (event.shiftKey || event.ctrlKey)
background = !background;
gBrowser.loadOneTab(imgURL, null, null, null, background, false);
Author And Source
この問題について(firegestures 画像検索スクリプト), 我々は、より多くの情報をここで見つけました https://qiita.com/armika_n/items/634fbf2f419a6fa7b6a8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .