A Chrome extension that gives you finer control over MyAnimeList.net scores
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 line
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. }