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.
 
 
 

28 line
630 B

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