A Chrome extension that gives you finer control over MyAnimeList.net scores
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

20 рядки
473 B

  1. {
  2. "manifest_version": 2,
  3. "name": "Decimal Scores for MyAnimeList",
  4. "version": "0.1",
  5. "description": "Gives you finer control over MyAnimeList.net scores.",
  6. "short_name": "MAL Decimal",
  7. "icons": {
  8. "48": "icon48.png",
  9. "128": "icon128.png"
  10. },
  11. "content_scripts": [{
  12. "matches": ["http://myanimelist.net/*"],
  13. "js": ["jquery.min.js", "main.js"],
  14. "all_frames": true
  15. }],
  16. "permissions": ["storage"]
  17. }