A little extension to filter out reminder spam from the front page of FA.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

29 wiersze
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. }