您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically switches from imperial to metric measurements
当前为
// ==UserScript== // @name metric-yummly // @author Davor Babic // @namespace http://www.github.com/davorb/metric-yummly // @description Automatically switches from imperial to metric measurements // @license Creative Commons Attribution License // @version 0.1 // @include http://www.yummly.com/* // @released 2014-06-06 // @updated 2006-04-06 // @compatible Greasemonkey // @grant none // ==/UserScript== /* * This file is a Greasemonkey user script. To install it, you need * the Firefox plugin "Greasemonkey" (URL: http://greasemonkey.mozdev.org/) * After you installed the extension, restart Firefox and revisit * this script. Now you will see a new menu item "Install User Script" * in your tools menu. * * To uninstall this script, go to your "Tools" menu and select * "Manage User Scripts", then select this script from the list * and click uninstall :-) * * Creative Commons Attribution License (--> or Public Domain) * http://creativecommons.org/licenses/by/2.5/ */ (function(){ var loc = location.toString(); var isImperial = loc.search(/unitType=imperial/i); if (isImperial !== -1) { var metricLocation = loc.replace(/unitType=imperial/i, 'unitType=metric'); location.assign(metricLocation); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址