Greasy Fork is available in English.

討論 » 開發

Match rule for www

§
發表於:2023-06-01

Please help me getting the equivalent of `// @include *://www.*` as `match`

§
發表於:2023-06-01
// ==UserScript==
// @name          www test
// @description   www test
// @version       -1
// @match         *://*/*
// @grant         none
// ==/UserScript==

(function() {
  'use strict';

  if (location.host.split('.')[0] !== 'www') return;

  alert('works');
})();
§
發表於:2023-06-15

OR location.host.startsWith('www.')

§
發表於:2023-06-19

Thank you gentlemen.

I'm curious to know, is it even possible to have a match rule for subdomains?

Even that chat bot, a friend here suggested, didn't provide any working match rule.

But I did further tested that bot, just to be fair, and it did a great job with RegEx, and it even explained the rules which I did find to be good.

發表回覆

登入以回復