FastAdmin文档阅读助手

FastAdmin文档阅读助手,帮助记录上次阅读位置

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         FastAdmin文档阅读助手
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  FastAdmin文档阅读助手,帮助记录上次阅读位置
// @author       IT老猫
// @match        https://doc.fastadmin.net/developer*
// @match        https://doc.fastadmin.net/doc*
// @require      https://cdn.bootcdn.net/ajax/libs/js-cookie/latest/js.cookie.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    window.addEventListener('lprequestend', (event)=> {
        let last_read = { url: document.URL, title: document.title };
        Cookies.set('last_read', JSON.stringify(last_read));
    })
    window.addEventListener('load', (event)=> {
        let data = Cookies.get('last_read');
        if (!!data) {
            let last_read = JSON.parse(data);
            if (data.url == document.URL) return;
            if(confirm('找到上次阅读位置['+last_read.title+'],是否从上次位置阅读')){
                document.location.href = last_read.url;
                Cookies.remove('last_read');
            }
        } else {
            Cookies.set('last_read', { url: document.URL, title: document.title });
        }
    })
})();