Greasy Fork

来自缓存

Greasy Fork is available in English.

手机浏览不去安装app

取消下载app按钮

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         手机浏览不去安装app
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  取消下载app按钮
// @author       ripple57
// @match        *://m.iqiyi.com/*
// @match        *://m.mgtv.com/*
// @match        *://m.v.qq.com/*
// @require      http://cdn.staticfile.org/jquery/2.0.0/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var href = window.location.href;

    if(/m.iqiyi.com/i.test(href)){
         console.log("88888888iqiyi")
        $(".m-iqyGuide-layer").hide();
    }else if(/m.mgtv.com/i.test(href)){
         console.log("888888888888888.mgtv.c")
        $("div.mg-down-btn").hide()
    }else if(/m.v.qq.com/i.test(href)){
        console.log("888888888888888v.qq.com")
         $(".at-app-banner").hide();
    }

    // Your code here...
})();