Backspace History

Makes backspace go back instead of modifying the search

目前为 2015-12-19 提交的版本。查看 最新版本

// ==UserScript==
// @name        Backspace History
// @namespace   https://www.google.com
// @description Makes backspace go back instead of modifying the search
// @include     https://www.google.com/*
// @version     1.1
// @grant       none
// @locale      en
// ==/UserScript==

$(function() {
  $(document).on('keydown', function(e) {
    console.log(e.which);
    if (e.which === 8) {
      window.history.back();
      return false;
    }
  })
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址