NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ReviewMeta - Check for fake reviews // @version 0.11 // @updateURL https://openuserjs.org/meta/wombley/ReviewMeta_-_Check_for_fake_reviews.meta.js // @description Lookup the current page on reviewmeta.com to check for fake reviews - Chrome context menu so Tampermonkey on Chrome only // @author wombley // @copyright 2018, wombley (https://openuserjs.org//users/wombley) // @license MIT // @run-at context-menu // @grant none // ==/UserScript== (function() { 'use strict'; window.open("https://reviewmeta.com/search?q="+encodeURIComponent(location.href), '_blank'); })();