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ů.
 
 
 

34 řádky
796 B

  1. {
  2. "name": "__MSG_extName__",
  3. "version": "1.0",
  4. "default_locale": "en",
  5. "description": "__MSG_extDesc__",
  6. "author": "chemicalcrux",
  7. "permissions": [
  8. "tabs",
  9. "*://www.furaffinity.net/",
  10. "storage"
  11. ],
  12. "web_accessible_resources": [
  13. "inject.js"
  14. ],
  15. "background": {
  16. "scripts": ["background.js"]
  17. },
  18. "content_scripts": [
  19. {
  20. "run_at": "document_start",
  21. "matches": ["*://www.furaffinity.net/"],
  22. "js": ["filter.js"]
  23. },
  24. {
  25. "run_at": "document_end",
  26. "matches": ["*://www.furaffinity.net/"],
  27. "js": ["run-filter.js"]
  28. }
  29. ],
  30. "browser_action": {
  31. "default_popup": "config.html"
  32. },
  33. "manifest_version": 2
  34. }