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
var getid=async function(sec_user_id,max_cursor){ | |
var res=await fetch("https://www.douyin.com/aweme/v1/web/aweme/post/?device_platform=webapp&aid=6383&channel=channel_pc_web&sec_user_id="+sec_user_id+"&max_cursor="+max_cursor, { | |
"headers": { | |
"accept": "application/json, text/plain, */*", | |
"accept-language": "vi", | |
"sec-ch-ua": "\"Not?A_Brand\";v=\"8\", \"Chromium\";v=\"108\", \"Microsoft Edge\";v=\"108\"", | |
"sec-ch-ua-mobile": "?0", | |
"sec-ch-ua-platform": "\"Windows\"", | |
"sec-fetch-dest": "empty", | |
"sec-fetch-mode": "cors", |
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 Tiktok Live Monitor | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Monitor live status, invoke local record server if onair | |
// @author InJeCTrL | |
// @match https://www.douyin.com/user/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=douyin.com | |
// @grant GM_xmlhttpRequest | |
// ==/UserScript== |
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 douyin-live-tweak | |
// @namespace slime7 | |
// @version 0.1.1 | |
// @description 调整抖音直播样式 | |
// @note 打开控制台输入以下内容可以调整参数: | |
// @note 设置弹幕大小:dlt.setSize(28); // [10-64] | |
// @note 设置弹幕不透明度:dlt.setOpacity(0.6); // (0-1] | |
// @author slime7 | |
// @match https://live.douyin.com/* |
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
const axios = require('axios'); | |
const errwin = /[\\\\/:*?\"<>|]/g; | |
const subwin = ``; | |
const cp = require('child_process'); | |
// 获取作品ID | |
var GetID = function (dyurl) { | |
return new Promise((resolve, reject) => { | |
try { | |
axios.get(dyurl, { |
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
var getid = async function(sec_user_id, max_cursor) { | |
var res = await fetch("https://www.douyin.com/aweme/v1/web/aweme/post/?device_platform=webapp&aid=6383&channel=channel_pc_web&sec_user_id=" + sec_user_id + "&max_cursor=" + max_cursor, { | |
"headers": { | |
"accept": "application/json, text/plain, */*", | |
"accept-language": "vi", | |
"sec-ch-ua": "\"Not?A_Brand\";v=\"8\", \"Chromium\";v=\"108\", \"Microsoft Edge\";v=\"108\"", | |
"sec-ch-ua-mobile": "?0", | |
"sec-ch-ua-platform": "\"Windows\"", | |
"sec-fetch-dest": "empty", | |
"sec-fetch-mode": "cors", |
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 dy_clear | |
// @version 1.0.1 | |
// @license gpl-3.0 | |
// @description 净化抖音网页版界面,只留下播放窗口、评论按钮和作者头像,其他元素统统移除,我只想安安静静的用网页刷短视频 | |
// @author djkloop | |
// @match https://www.douyin.com/* | |
// ==/UserScript== |