A Chrome extension that gives you finer control over MyAnimeList.net scores
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
411 B

  1. {
  2. "manifest_version": 2,
  3. "name": "MyAnimeList Centigrade Scale",
  4. "version": "0.1",
  5. "description": "Adds a centigrade scale to MyAnimeList.net's rating system.",
  6. "short_name": "MAL Centigrade",
  7. "icons": {},
  8. "content_scripts": [{
  9. "matches": ["http://myanimelist.net/*"],
  10. "js": ["jquery.min.js", "centigrade.js"]
  11. }],
  12. "permissions": [
  13. "storage"
  14. ]
  15. }