medium.com: read unlimited stories

removes the "sid" cookie, which is used to detect, how many stories you already read

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name             medium.com: read unlimited stories
// @description      removes the "sid" cookie, which is used to detect, how many stories you already read
// @match            http*://medium.com/*
// @run-at           document-start
// @author           Archangel1C
// @license          GPL-3.0-only
// @namespace        https://github.com/Archangel1C
// @version          0.1
// @grant            none
// @compatible       chrome
// @contributionURL  https://flattr.com/@Archangel1C
// ==/UserScript==
//
// Sources/Influences:
//

(function resetSidCookie() {
    'use strict';

    const storiesLeftCookie = "sid";
//  const oldValue = cookieValue(storiesLeftCookie);
//  const newValue = "";
    document.cookie = storiesLeftCookie + "=";
//  console.log(`[${GM_info.script.name}] set cookie [${storiesLeftCookie}]: [${oldValue}] -> [${newValue}]`);
    console.log(`[${GM_info.script.name}] cookie [${storiesLeftCookie}] was reset to enable unlimited reading`);

})();

function cookieValue(name) {
    return document.cookie
        .split('; ')
        .find(row => row.startsWith(name))
        .split('=')[1];
}