I'm trying to set up a script to run on Quora, but it's running on every other site instead.
I have the @include
directive in the metadata block, and under script settings/include, it's set to include *
, and I can't see any way to remove that.
Here's a thread about the same issue I'm having, but there's no @exclude
directive to remove (although I did try putting @exclude *
before the @include
, but that didn't fix anything). I also checked my formatting against the answer here and I don't see any typos.
Here's my metadata block.
// ==UserScript==
// @name Quora fixer
// @namespace quora
// @include https://www.quora.com/*
// @version 1
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @description prevents links from opening in a new tab
// @run-at document-idle
// ==UserScript==