linxb_edge_read

调用edge的阅读模式将网页转化为阅读模式,本来想直接打开的,结果发现打不开,所以只好在URL前加了个read:然后复制到剪贴板。

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         linxb_edge_read
// @description  调用edge的阅读模式将网页转化为阅读模式,本来想直接打开的,结果发现打不开,所以只好在URL前加了个read:然后复制到剪贴板。
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @namespace    https://greasyfork.org/zh-CN/users/884732-linxb
// @version      1.0
// @author       linxb
// @license      MIT
// @match        *://*/*
// @exclude      *://www.baidu.com/
// @exclude      *://*.baidu.com/s?*
// @exclude      *://*.so.com/s?*
// @exclude      *://*.sogou.com/sogou*
// @exclude      *://www.sogou.com/
// @exclude      *://*.bing.com*
// @exclude      *://*.google.com.*
// @exclude      *://*.dogedoge.com*
// @exclude      *://*bilibili*/*
// @require      https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_setClipboard
// @grant        unsafeWindow
// @grant        window.close
// @grant        window.focus
// ==/UserScript==

(function() {
    /* global $ */
    'use strict';

    // Your code here...
    var CurrentUrl = window.location.href;
    var NewUrl = "read:" + CurrentUrl;
    GM_setClipboard(NewUrl);


})();