A little extension to filter out reminder spam from the front page of FA.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

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