A little extension to filter out reminder spam from the front page of FA.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

8 řádky
212 B

  1. "use strict";
  2. const script = document.createElement("script");
  3. script.src = chrome.extension.getURL("inject.js");
  4. (document.head || document.documentElement).appendChild(script);
  5. script.onload = script.remove;