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.

10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
10 vuotta sitten
12345678910111213141516171819
  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. }