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

16 行
381 B

  1. {
  2. "manifest_version": 2,
  3. "name": "100-Point Scores for MyAnimeList",
  4. "version": "0.1",
  5. "description": "Gives you finer control over MyAnimeList.net scores.",
  6. "short_name": "MAL 100",
  7. "icons": {},
  8. "content_scripts": [{
  9. "matches": ["http://myanimelist.net/*"],
  10. "js": ["jquery.min.js", "main.js"]
  11. }],
  12. "permissions": ["storage"]
  13. }