This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name 晋江章节修改高亮 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description 高亮修改过的章节,区别首发时间和更新时间 | |
// @author oovz | |
// @match *://www.jjwxc.net/onebook.php?novelid=* | |
// @exclude *://www.jjwxc.net/onebook.php?novelid=*&chapterid=* | |
// @source https://greasyfork.org/en/scripts/536627-%E6%99%8B%E6%B1%9F%E7%AB%A0%E8%8A%82%E4%BF%AE%E6%94%B9%E9%AB%98%E4%BA%AE | |
// @source https://gist.github.com/oovz/e1f36ff2bf18c0ab64180e785f837a12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Changpei Chapter Downloader | |
// @name:zh-CN 长佩章节下载器 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Download chapter content from Changpei(gongzicp.com) | |
// @description:zh-CN 从长佩(gongzicp.com)下载章节文本 | |
// @author oovz | |
// @match *://*gongzicp.com/read-*.html | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Text, SafeAreaView, StyleSheet, ActivityIndicator, View } from 'react-native'; | |
import React, { useState, useEffect } from 'react'; | |
import * as Speech from 'expo-speech'; | |
export default function App() { | |
const [voicesNumber, setVoicesNumber] = useState(null); | |
const [isLoading, setIsLoading] = useState(true); | |
useEffect(() => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Jinjiang Chapter Downloader | |
// @name:zh-CN 晋江章节下载器 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.6 | |
// @description Download chapter content from JinJiang (jjwxc.net) | |
// @description:zh-CN 从晋江下载章节文本 | |
// @author oovz | |
// @match *://www.jjwxc.net/onebook.php?novelid=*&chapterid=* | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Qidian Chapter Downloader | |
// @name:zh-CN 起点(qidian.com)章节下载器 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.8 | |
// @description Download chapter content from Qidian (qidian.com) | |
// @description:zh-CN 从起点下载章节文本 | |
// @author oovz | |
// @match https://www.qidian.com/chapter/* | |
// @grant none |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import qbittorrentapi | |
sites = { | |
"zhuque.in": { | |
"up": 6500000, # 6.5 MBps | |
"tag": "ZhuQue" | |
}, | |
} |