Make Medium Readable Again https://makemediumreadable.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

28 строки
541 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.1",
  6. "options_ui": {
  7. "page": "options.html",
  8. "chrome_style": true
  9. },
  10. "icons": {
  11. "128": "icon.png"
  12. },
  13. "browser_action": {
  14. "default_icon": "icon.png"
  15. },
  16. "permissions": [
  17. "storage", "https://*/*"
  18. ],
  19. "content_scripts": [
  20. {
  21. "matches": ["https://*/*"],
  22. "js": ["background.js"]
  23. }
  24. ]
  25. }