RYM Add Helper
Extension for auto-filling RYM release submission forms
RYM Add Helper là gì?
RYM Add Helper là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Extension for auto-filling RYM release submission forms".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng RYM Add Helper
Tải xuống các tệp mở rộng RYM Add Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | RYM Add Helper |
ID | einfkiigmefpijdgkijkcmccpihacifc |
URL Chính Thức | https://chromewebstore.google.com/detail/rym-add-helper/einfkiigmefpijdgkijkcmccpihacifc |
Mô tả | Extension for auto-filling RYM release submission forms |
Kích Thước Tệp | 273 KB |
Số Lần Cài Đặt | 245 |
Phiên Bản Hiện Tại | 1.1.4 |
Cập Nhật Lần Cuối | 2020-06-12 |
Ngày Phát Hành | 2020-06-11 |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rpeg/rym-add-helper |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |