RYM Add Helper
Extension for auto-filling RYM release submission forms
RYM Add Helperとは何ですか?
RYM Add HelperはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Extension for auto-filling RYM release submission forms」です。
拡張機能のスクリーンショット
RYM Add Helper拡張機能のCRXファイルをダウンロード
RYM Add Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |