BetterRYM
Improvements for RateYourMusic
Cos'è BetterRYM?
BetterRYM è un'estensione di Chrome sviluppata da Jake Cheek, e la sua funzione principale è "Improvements for RateYourMusic".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BetterRYM
Scarica i file di estensione BetterRYM in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | pdbgknkejapoehgogijhmahhpiimlhjg |
| URL Ufficiale | https://chromewebstore.google.com/detail/betterrym/pdbgknkejapoehgogijhmahhpiimlhjg |
| Descrizione | Improvements for RateYourMusic |
| Dimensione del File | 100 KB |
| Conteggio Installazioni | 2,108 |
| Versione Corrente | 4.25.3 |
| Ultimo Aggiornamento | 2023-08-02 |
| Data di Pubblicazione | 2021-03-03 |
| Valutazione | 4.96/5 Totale 27 Valutazioni |
| Sviluppatore | Jake Cheek |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://jgchk.github.io/better-rym/ |
| Lingue Supportate | 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"
} | |