RYM Add Helper
Extension for auto-filling RYM release submission forms
RYM Add Helperคืออะไร?
RYM Add Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Extension for auto-filling RYM release submission forms"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RYM Add Helper
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |