BetterRYM
Improvements for RateYourMusic
Co to jest BetterRYM?
BetterRYM to rozszerzenie Chrome opracowane przez Jake Cheek, a jego główną funkcją jest „Improvements for RateYourMusic”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia BetterRYM
Pobierz pliki rozszerzeń BetterRYM w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pdbgknkejapoehgogijhmahhpiimlhjg |
| Oficjalny URL | https://chromewebstore.google.com/detail/betterrym/pdbgknkejapoehgogijhmahhpiimlhjg |
| Opis | Improvements for RateYourMusic |
| Rozmiar pliku | 100 KB |
| Liczba instalacji | 2,108 |
| Aktualna Wersja | 4.25.3 |
| Ostatnia Aktualizacja | 2023-08-02 |
| Data Publikacji | 2021-03-03 |
| Ocena | 4.96/5 Łącznie 27 Oceny |
| Deweloper | Jake Cheek |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://jgchk.github.io/better-rym/ |
| Obsługiwane Języki | 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"
} | |