BetterRYM
Improvements for RateYourMusic
什么是BetterRYM?
BetterRYM是由Jake Cheek开发的Chrome扩展程序,该扩展的主要功能是“Improvements for RateYourMusic”。
扩展截图
下载BetterRYM扩展crx文件
下载BetterRYM扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
BetterRYM enhances RateYourMusic with many quality-of-life features!
- Adds missing streaming links on release pages
- Auto-fill the Add Release page just by pasting a link
- Download hi-res cover art
- Filter your collection by release type
- Convert stream links to embed codes
- Edit your profile page inline with markup preview 扩展基本信息
| 名称 | |
| ID | pdbgknkejapoehgogijhmahhpiimlhjg |
| 官方URL | https://chromewebstore.google.com/detail/betterrym/pdbgknkejapoehgogijhmahhpiimlhjg |
| 简介 | Improvements for RateYourMusic |
| 文件大小 | 100 KB |
| 安装次数 | 2,108 |
| 当前版本 | 4.25.3 |
| 更新时间 | 2023-08-02 |
| 上架时间 | 2021-03-03 |
| 评分 | 4.96/5 共27次评分 |
| 开发者 | Jake Cheek |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://jgchk.github.io/better-rym/ |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "BetterRYM",
"icons": {
"16": "sonemic-16.png",
"48": "sonemic-48.png",
"128": "sonemic-128.png"
},
"background": {
"scripts": [
"browser-polyfill.js",
"background.js"
]
},
"content_scripts": [
{
"js": [
"browser-polyfill.js",
"content.js"
],
"matches": [
"*:\/\/*.rateyourmusic.com\/*"
],
"run_at": "document_start"
}
],
"page_action": {
"default_icon": {
"19": "extension-enabled-19.png",
"38": "extension-enabled-38.png"
},
"default_title": "BetterRYM enabled"
},
"permissions": [
"storage",
"downloads",
"tabs",
"*:\/\/*\/*"
],
"description": "Improvements for RateYourMusic",
"version": "4.25.3"
} | |