Skip to content

Instantly share code, notes, and snippets.

@naoyeye
Created February 24, 2022 07:21
Show Gist options
  • Save naoyeye/209d4fd7122d83dbfdf54b1258d89487 to your computer and use it in GitHub Desktop.
Save naoyeye/209d4fd7122d83dbfdf54b1258d89487 to your computer and use it in GitHub Desktop.
显示豆瓣小组id
// ==UserScript==
// @name 显示豆瓣小组id
// @namespace http://han.im
// @version 0.1
// @description try to take over the world!
// @author J.Y Han
// @match https://www.douban.com/group/*
// @grant showDoubanGroupId
// ==/UserScript==
(function() {
'use strict';
let groupId = $('.group-topic-search input[name="group"]').attr('value');
$('#group-info').after(`<p>id:${groupId}</p>`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment