A little extension to filter out reminder spam from the front page of FA.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

32 行
781 B

  1. {
  2. "name": "FurAffinity Filter",
  3. "version": "0.1",
  4. "description": "Filters out reminder/YCH/adopt spam from the front page",
  5. "permissions": [
  6. "tabs",
  7. "*://www.furaffinity.net/",
  8. "storage"
  9. ],
  10. "web_accessible_resources": [
  11. "inject.js"
  12. ],
  13. "background": {
  14. "scripts": ["background.js"]
  15. },
  16. "content_scripts": [
  17. {
  18. "run_at": "document_start",
  19. "matches": ["*://www.furaffinity.net/"],
  20. "js": ["filter.js"]
  21. },
  22. {
  23. "run_at": "document_end",
  24. "matches": ["*://www.furaffinity.net/"],
  25. "js": ["run-filter.js"]
  26. }
  27. ],
  28. "browser_action": {
  29. "default_popup": "config.html"
  30. },
  31. "manifest_version": 2
  32. }