Make Medium Readable Again https://makemediumreadable.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

37 行
714 B

  1. {
  2. "manifest_version": 2,
  3. "name": "Make Medium Readable Again",
  4. "description": "Neutralizes annoying parts of the Medium reading experience and lets you read again.",
  5. "version": "1.5.0",
  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. "web_accessible_resources": [
  32. "medium.css"
  33. ]
  34. }