您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Open the currently-selected post in Feedly in a new background tab using the semicolon key. NOTE: this only works for the collapsed-titles layout - see the linked extension for more robust handling.
当前为
// ==UserScript== // @name Feedly - Open in Background Tab // @namespace https://github.com/theborg3of5/Userscripts/ // @version 1.0 // @description Open the currently-selected post in Feedly in a new background tab using the semicolon key. NOTE: this only works for the collapsed-titles layout - see the linked extension for more robust handling. // @author Gavin Borg // @match http*://feedly.com/* // @grant GM_openInTab // ==/UserScript== // Based on Feedly Background Tab by Aaron Saray: https://chrome.google.com/webstore/detail/feedly-background-tab/gjlijkhcebalcchkhgaiflaooghmoegk ( source: https://github.com/aaronsaray/feedlybackgroundtab ) (function() { 'use strict'; document.onkeyup = function(e) { if (e.which == 186) { // Semicolon var link = document.querySelector(".entry.selected a.title"); // Selected div, there's a .title link inside with the URL we want. if(!link) { return; } var url = link.href; if(!url) { return; } GM_openInTab(url); } }; })();