RYM Add Helper

Extension for auto-filling RYM release submission forms

What is RYM Add Helper?

RYM Add Helper is a Chrome extension developed by Unknown, and its main feature is "Extension for auto-filling RYM release submission forms".

Extension Screenshots

screenshot

Download RYM Add Helper Extension CRX File

Download RYM Add Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Guides users through an interactive HTML element selection process to prune metadata from any arbitrary webpage with text formatting rules applied. Fills out the RYM release add form automatically. Saves CSS selector templates to Chrome storage allowing for one-click adds.                    

Extension Basic Information

Name RYM Add Helper RYM Add Helper
ID einfkiigmefpijdgkijkcmccpihacifc
Official URL https://chromewebstore.google.com/detail/rym-add-helper/einfkiigmefpijdgkijkcmccpihacifc
Description Extension for auto-filling RYM release submission forms
File Size 273 KB
Installation Count 245
Current Version 1.1.4
Last Updated 2020-06-12
Publish Date 2020-06-11
Developer Unknown
Payment Type free
Extension Website https://github.com/rpeg/rym-add-helper
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RYM Add Helper",
    "description": "Extension for auto-filling RYM release submission forms",
    "version": "1.1.4",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "icons\/off_16.png",
            "48": "icons\/off_48.png"
        },
        "default_title": "RYM Add Helper"
    },
    "icons": {
        "16": "icons\/on_16.png",
        "48": "icons\/on_48.png",
        "128": "icons\/on_128.png"
    },
    "background": {
        "scripts": [
            "chrome\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage",
        "activeTab",
        "https:\/\/rateyourmusic.com\/releases\/ac"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/rateyourmusic.com\/releases\/ac?artist_id=*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "chrome\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "main.js",
        "fill.js"
    ]
}