Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove creator pop #222

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions csdngreener_greasyfork.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name 🔥持续更新🔥 CSDN广告完全过滤、人性化脚本优化:🆕 不用再登录了!让你体验令人惊喜的崭新CSDN。
// @namespace https://github.com/adlered
// @version 4.1.9
// @version 4.2.0
// @description ⚡️全新4.0版本!拥有数项独家功能的最强CSDN脚本,不服比一比⚡️|🕶无需登录CSDN,获得比会员更佳的体验|🖥自定义背景图,分辨率自适配,分屏不用滚动|💾超级预优化|🔖独家超级免会员|🏷独家原创文章免登录展开|🔌独家推荐内容自由开关|📠独家免登录复制|🔗独家防外链重定向|📝独家论坛未登录自动展开文章、评论|🌵全面净化|📈沉浸阅读|🧴净化剪贴板|📕作者信息文章顶部展示
// @author Adler
// @connect www.csdn.net
Expand All @@ -16,6 +16,7 @@
// @grant GM_getValue
// @license AGPL-3.0-or-later
// @antifeature ads CSDNGreener 脚本中存在可永久关闭的小广告,请放心安装!
// @note 23-09-11 4.2.0 屏蔽创作引导弹窗
// @note 23-05-25 4.1.9 再次修复免登录复制无法使用的问题
// @note 23-05-11 4.1.8 强杀变异型登录框弹出(不影响自己点击登录使用)
// @note 23-05-10 4.1.7 增强免登录复制功能
Expand Down Expand Up @@ -158,7 +159,7 @@
// @note 19-03-01 1.0.1 修复了排版问题, 优化了代码结构
// @note 19-02-26 1.0.0 初版发布
// ==/UserScript==
var version = "4.1.9";
var version = "4.2.0";
var currentURL = window.location.href;
if (currentURL.indexOf("?") !== -1) {
currentURL = currentURL.substring(0, currentURL.indexOf("?"));
Expand Down Expand Up @@ -645,6 +646,8 @@ var protect_svg = '<svg t="1629560538805" class="icon" viewBox="0 0 1024 1024" v
put(".csdn-redpack-lottery-btn-box");
// 学生认证
put(".csdn-highschool-window");
// 创作引导弹窗
put(".write-guide-buttom-box");
// 右侧悬浮栏除置顶以外的按钮
put(".option-box[data-type='guide'],.option-box[data-type='cs'],.csdn-common-logo-advert");
clean(10);
Expand Down
7 changes: 5 additions & 2 deletions csdngreener_openuserjs.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// @contributionURL https://doc.stackoverflow.wiki/web/#/21?page_id=138
// @name 最强的老牌脚本CSDNGreener:CSDN广告完全过滤、人性化脚本优化
// @namespace https://github.com/adlered
// @version 4.1.9
// @version 4.2.0
// @description 全新4.0版本!拥有数项独家功能的最强CSDN脚本,不服比一比|无需登录CSDN,获得比会员更佳的体验|背景图自定义,模块化卡片,显示什么你决定|分辨率自适配,分屏不用滚动|超级预优化|独家原创文章免登录展开|独家推荐内容自由开关|独家免登录复制|独家防外链重定向|独家论坛未登录自动展开文章、评论|全面净化|沉浸阅读|净化剪贴板
// @connect www.csdn.net
// @include *://*.csdn.net/*
Expand All @@ -20,6 +20,7 @@
// @grant GM_getValue
// @license AGPL-3.0-or-later
// @antifeature ads CSDNGreener 脚本中存在可永久关闭的小广告,请放心安装!
// @note 23-09-11 4.2.0 屏蔽创作引导弹窗
// @note 23-05-25 4.1.9 再次修复免登录复制无法使用的问题
// @note 23-05-11 4.1.8 强杀变异型登录框弹出(不影响自己点击登录使用)
// @note 23-05-10 4.1.7 增强免登录复制功能
Expand Down Expand Up @@ -169,7 +170,7 @@
// @note 19-03-01 1.0.1 修复了排版问题, 优化了代码结构
// @note 19-02-26 1.0.0 初版发布
// ==/UserScript==
var version = "4.1.9";
var version = "4.2.0";
var currentURL = window.location.href;
if (currentURL.indexOf("?") !== -1) {
currentURL = currentURL.substring(0, currentURL.indexOf("?"));
Expand Down Expand Up @@ -656,6 +657,8 @@ var protect_svg = '<svg t="1629560538805" class="icon" viewBox="0 0 1024 1024" v
put(".csdn-redpack-lottery-btn-box");
// 学生认证
put(".csdn-highschool-window");
// 创作引导弹窗
put(".write-guide-buttom-box");
// 右侧悬浮栏除置顶以外的按钮
put(".option-box[data-type='guide'],.option-box[data-type='cs'],.csdn-common-logo-advert");
clean(10);
Expand Down