您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Use shortcut open your github
- // ==UserScript==
- // @name Use shortcut to open your github
- // @namespace http://tampermonkey.net/
- // @version 0.3
- // @description Use shortcut open your github
- // @author You
- // @include https://github.com/
- // @match https://github.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
- // @grant none
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- let commaCount = 0; // We can move the counter outside of the event listener
- let timer = null
- document.addEventListener('keydown', function(event) {
- const href = `https://github1s.com${location.pathname}`;
- if (timer) clearTimeout(timer)
- // We can check if the key pressed is the comma key (key code 188)
- if (event.code === 'Semicolon' && event.key === ';') {
- // We can increment the counter each time the comma key is pressed
- commaCount++;
- // If the comma key has been pressed twice, we can open a link
- if (commaCount === 2) {
- window.open(href);
- // We can reset the counter after the link is opened
- commaCount = 0;
- }
- } else {
- // We can reset the counter if any other key is pressed
- commaCount = 0;
- }
- timer = setTimeout(() => { commaCount = 0 }, 1e3)
- });
- })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址