Medium Stories
Helps Medium writers to separate their stories from comments
Medium Storiesคืออะไร?
Medium Stories เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yelysei และคุณลักษณะหลักของมันคือ "Helps Medium writers to separate their stories from comments"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Medium Stories
ดาวน์โหลดไฟล์ส่วนขยาย Medium Stories ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will help Medium writers to separate their stories from comments on the "Your stories" page ("Published" tab). On the right side of the Drafts/Published tabs, you will see additional All/Stories/Comments tabs that will allow to show/hide certain items on the list. This way it will be much easier to navigate through your stories and comments.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Medium Stories |
ID | lokncfhfamceglahdpmlphafpejonebp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/medium-stories/lokncfhfamceglahdpmlphafpejonebp |
คำอธิบาย | Helps Medium writers to separate their stories from comments |
ขนาดไฟล์ | 10.69 KB |
จำนวนการติดตั้ง | 86 |
เวอร์ชันปัจจุบัน | 1.5 |
อัปเดตครั้งล่าสุด | 2020-12-25 |
วันที่เผยแพร่ | 2020-04-07 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | yelysei |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Medium Stories", "version": "1.5", "description": "Helps Medium writers to separate their stories from comments", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/medium.com\/*" ], "run_at": "document_end", "js": [ ".\/src\/stories.js" ], "css": [ ".\/assets\/css\/stories.css" ] } ], "page_action": { "default_icon": { "16": ".\/assets\/images\/logo16.png", "32": ".\/assets\/images\/logo32.png", "48": ".\/assets\/images\/logo48.png", "128": ".\/assets\/images\/logo128.png" } }, "icons": { "16": ".\/assets\/images\/logo16.png", "32": ".\/assets\/images\/logo32.png", "48": ".\/assets\/images\/logo48.png", "128": ".\/assets\/images\/logo128.png" }, "manifest_version": 2 } |