A little extension to filter out reminder spam from the front page of FA.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

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