Created
April 7, 2017 06:11
-
-
Save youcune/b1c02228de53f6e836c7934931063969 to your computer and use it in GitHub Desktop.
Facebookにログインしていない状態で出てくるクソデカくてウザいログインしようぜポップアップを表示させなくするユーザースクリプト
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Facebook Remove CTA | |
// @namespace jp.youcube.facebook-remove-cta | |
// @include https://www.facebook.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
elm = document.getElementById('pagelet_growth_expanding_cta'); | |
if (elm != null) { | |
elm.parentNode.removeChild(elm); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
μBlockのフィルターに
と書いてもいけました。