RYM Add Helper
Extension for auto-filling RYM release submission forms
RYM Add Helper क्या है?
RYM Add Helper Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for auto-filling RYM release submission forms"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RYM Add Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | RYM Add Helper |
ID | einfkiigmefpijdgkijkcmccpihacifc |
आधिकारिक URL | https://chromewebstore.google.com/detail/rym-add-helper/einfkiigmefpijdgkijkcmccpihacifc |
विवरण | Extension for auto-filling RYM release submission forms |
फ़ाइल का आकार | 273 KB |
स्थापना संख्या | 245 |
वर्तमान संस्करण | 1.1.4 |
अंतिम अपडेट | 2020-06-12 |
प्रकाशन तिथि | 2020-06-11 |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/rpeg/rym-add-helper |
समर्थित भाषाएँ | 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" ] } |