Search Reelgood

Context menu to execute UserScript

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            Search Reelgood
// @namespace       http://tampermonkey.net/
// @description     Context menu to execute UserScript
// @version         0.20
// @author          [email protected]
// @include         *
// @grant           GM_openInTab
// @run-at          context-menu
// @license         GPL 2.0
// @description     allows a one click connection from any website to the Reelgood search results for that selection
// ==/UserScript==]]


(function() {
    'use strict';
    //first read any selected text
    var textSelected = "";
        textSelected = document.getSelection().toString().trim();

    //if none, read text under cursor
    if(textSelected.length<=1){
        var elements = document.querySelectorAll(':hover');
        textSelected = elements[elements.length-1].innerText.trim();
        console.log(elements.length+"  "+elements);
    }
    //convert non url safe characters
    //var urlsafe = textSelected.replace("&", "%26"); //textSelected = ";,/?:@&=+$-_.!~*'()#"
    var urlsafe = encodeURIComponent(textSelected);
    console.log("RightClickTo ---"+textSelected+"---"+ urlsafe );
    GM_openInTab("https://reelgood.com/search?q="+urlsafe, { active: true, insert: true, setParent: true });

})();