A little extension to filter out reminder spam from the front page of FA.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

29 linhas
708 B

  1. {
  2. "name": "__MSG_extName__",
  3. "version": "1.0",
  4. "default_locale": "en",
  5. "description": "__MSG_extDesc__",
  6. "author": "chemicalcrux",
  7. "permissions": [
  8. "http://www.furaffinity.net/",
  9. "https://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_end",
  21. "matches": ["http://www.furaffinity.net/", "https://www.furaffinity.net/"],
  22. "js": ["filter.js"]
  23. }
  24. ],
  25. "browser_action": {
  26. "default_popup": "config.html"
  27. },
  28. "manifest_version": 2
  29. }