A Chrome extension that gives you finer control over MyAnimeList.net scores
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
446 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. "css": ["centigrade.css"],
  11. "js": ["jquery.min.js", "centigrade.js"]
  12. }],
  13. "permissions": [
  14. "storage"
  15. ]
  16. }