Make Medium Readable Again https://makemediumreadable.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

34 líneas
673 B

  1. {
  2. "manifest_version": 2,
  3. "name": "Make Medium Readable Again",
  4. "description": "Neutralizes annoying parts of the Medium reading experience so it's more enjoyable to read things.",
  5. "version": "1.3",
  6. "applications": {
  7. "gecko": {
  8. "id": "{28d1ed97-5ff6-432b-a26d-61896fe2cbed}",
  9. "strict_min_version": "42.0"
  10. }
  11. },
  12. "options_ui": {
  13. "page": "options.html",
  14. "chrome_style": true
  15. },
  16. "icons": {
  17. "128": "icon.png"
  18. },
  19. "browser_action": {
  20. "default_icon": "icon.png"
  21. },
  22. "permissions": [
  23. "storage", "https://*/*"
  24. ],
  25. "content_scripts": [
  26. {
  27. "matches": ["https://*/*"],
  28. "js": ["content.js"]
  29. }
  30. ]
  31. }