NiCommonsPlayer

ニコニ・コモンズの音楽素材をリスト再生させます。メニューからオンにするのを忘れずに [twitter: @maruyaki_3]
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NiCommonsPlayer",
  "version": "1.1.10",
  "description": "ニコニ・コモンズの音楽素材をリスト再生させます。メニューからオンにするのを忘れずに [twitter: @maruyaki_3]",
  "action": {
    "default_icon": "nico16.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "nico16.png",
    "48": "nico48.png",
    "128": "nico128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "bookmarks"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://commons.nicovideo.jp/search/*",
        "https://commons.nicovideo.jp/search/*"
      ],
      "js": [
        "jquery.min.js",
        "contents.js"
      ],
      "css": [
        "SimpleMusicPlayer.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://commons.nicovideo.jp/users/upload/*",
        "https://commons.nicovideo.jp/users/upload/*"
      ],
      "js": [
        "jquery.min.js",
        "contents_user.js"
      ],
      "css": [
        "SimpleMusicPlayer.css"
      ],
      "run_at": "document_end"
    }
  ]
}