Includes / Excludes Help #1598
Answered
by
derjanb
tsuliwaensis
asked this question in
Q&A
-
Is it possible to configure a Tampermonkey script so that it will apply only to the inner pages of a website? For example, I want the script to apply to |
Beta Was this translation helpful? Give feedback.
Answered by
derjanb
Sep 22, 2022
Replies: 1 comment 1 reply
-
This should do what you want... // ==UserScript==
// @name Exclude Root
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @match https://www.example.com/*
// @exclude https://www.example.com/
// @grant none
// ==/UserScript==
console.log('running'); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
tsuliwaensis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should do what you want...