RYM Add Helper
Extension for auto-filling RYM release submission forms
Wat is RYM Add Helper?
RYM Add Helper is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Extension for auto-filling RYM release submission forms".
Extensie Screenshots
Download het CRX-bestand van de extensie RYM Add Helper
Download RYM Add Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | RYM Add Helper |
ID | einfkiigmefpijdgkijkcmccpihacifc |
Officiële URL | https://chromewebstore.google.com/detail/rym-add-helper/einfkiigmefpijdgkijkcmccpihacifc |
Beschrijving | Extension for auto-filling RYM release submission forms |
Bestandsgrootte | 273 KB |
Aantal Installaties | 245 |
Huidige Versie | 1.1.4 |
Laatst Bijgewerkt | 2020-06-12 |
Publicatiedatum | 2020-06-11 |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Extensiewebsite | https://github.com/rpeg/rym-add-helper |
Ondersteunde Talen | 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" ] } |