Coder Social home page Coder Social logo

Comments (4)

lovegaoshi avatar lovegaoshi commented on July 28, 2024

直播间表情下载:
https://greasyfork.org/en/scripts/460954-b%E7%AB%99%E7%9B%B4%E6%92%AD%E8%A1%A8%E6%83%85%E4%B8%8B%E8%BD%BD

其他素材上传阿b专栏
提取专栏图片外链油猴脚本:

// ==UserScript==
// @name         b站专栏图片url BTN
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.bilibili.com/read/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

function makeButton () {
    'use strict';

    let a = document.createElement('BUTTON');
    a.textContent = "图片url";
    a.onclick = () => {
        for (const val of document.getElementsByClassName('img-box loaded')) {
            let url = val.getElementsByTagName('img')[0].src;
            console.log(url.substring(0, url.indexOf('@')));
        }
    };
    document.getElementsByClassName('title')[0].appendChild(a);

};

function sleep(ms) {
    return new Promise(resolve => setTimeout(resolve, ms));
}

async function demo() {
    await sleep(110);
    makeButton();
}

demo();

from azusa-player-mobile.

lovegaoshi avatar lovegaoshi commented on July 28, 2024

b站数字藏品 壁纸:
https://github.com/lovegaoshi/biliNFT

from azusa-player-mobile.

lovegaoshi avatar lovegaoshi commented on July 28, 2024

自动挡把b站装扮转换为管人播放器皮肤:

cd src/components/styles
node NoxExportGarb.js --garbid=39636

会存入steriaGarb.json

from azusa-player-mobile.

lovegaoshi avatar lovegaoshi commented on July 28, 2024
import requests
a = requests.get('https://api.bilibili.com/x/emote/package?business=reply&ids=4013')
jsoned = a.json()
[x['url'] for x in jsoned['data']['packages'][0]['emote']]

from azusa-player-mobile.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.