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/*q=*
// @version     1.2
// @run-at      document-end
// @grant       none
// @locale      en
// ==/UserScript==

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

QingJ © 2025

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