🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

GreenStemstar

try to take kids off games and videos!

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         GreenStemstar
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take kids off games and videos!
// @author       younglet
// @match        https://code.stemstar.com/*
// @match        https://www.bilibili.com/*
// @match        https://search.bilibili.com/*
// @match        https://haokan.baidu.com/*
// @match        https://www.douyin.com/*
// @match        https://www.baidu.com/*
// @match        http://www.onlyscratch.com/*
// @match        https://www.scratch5.com/*
// @match        https://www.ixigua.com/*
// @license MIT
// @require      https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.2.1/jquery.min.js
// @icon         https://www.google.com/s2/favicons?sz=64&domain=stemstar.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';


    var blackList = [
        'haokan.baidu.com',
        'bilibili.com',
        'onlyscratch',
        'scratch5',
        'member/favorite',
        'ixigua.com',
        '游戏',
        '%E6%B8%B8%E6%88%8F',//游戏
        '%E8%A7%86%E9%A2%91',//视频
        '%E5%8A%A8%E7%94%BB',//动画
        'ikun',
        '%E8%94%A1%E5%BE%90%E5%9D%A4',//蔡徐坤
        '%E5%9D%A4%E5%9D%A4',//坤坤
        '%E5%B0%8F%E9%BB%91%E5%AD%90',//小黑子
        '%E9%B8%A1%E4%BD%A0%E5%A4%AA%E7%BE%8E',//鸡你太美
        '%E5%8F%AA%E5%9B%A0',//只因
        '%E9%B8%A1',//鸡


    ]


    if(document.location.href  == 'https://code.stemstar.com/'){

    $(`a[href="/discovery/project"]`).parent().remove()

    var mainBody = $(`#app > section > main`)
    var btn = $(`#app > section > main > div > div > div.excellence > div.content > div.ex-right > div.ex-more > button`)

    $(`#app > section > main > div`).css( 'margin','20px')
    btn.css( 'margin','60px')
    }

    function handle(){
        blackList.forEach((host,i)=>{if( document.location.href.indexOf(host) >0 ){
            $('a').each((i,e)=>{e.href = 'https://code.stemstar.com'})
        }})


        if( document.location.href.indexOf('douyin.com') >0 ){
            $('div').each((i,e)=>{e.remove()})
        }
        if( document.location.href.indexOf('ixigua.com') >0 ){
            $('div').each((i,e)=>{e.remove()})
        }
        if( document.location.href.indexOf('member/favorite') >0 ){
            $(' div.member-favorite-wrap > div.member-project-page > div.common-blank').remove()
        }





         $(`a[href="/discovery/project"]`).parent().remove()


        if(document.location.href  == 'https://code.stemstar.com/'){
        console.log('hello')
            $(`a[href="/discovery/project"]`).remove()
            $(`a[href="/discovery/project"]`).parent().remove()
            $(`#app > section > main > div > div > div:nth-child(2)`).remove()
            console.log()
            if($(`#app > section > main > div > div`).children().length >=3 ){
                $(`#app > section > main > div > div > div:nth-child(2)`).remove()
                $(`#app > section > main > div > div`).append(btn)
            }

        }
        if(document.location.href  == 'https://code.stemstar.com/discovery/project'){
        console.log('hello')
            $(`#app > section > main > div`).remove()

        }
    }

    setInterval(handle,10)



})();