Medium Stories
Helps Medium writers to separate their stories from comments
什麼是Medium Stories?
Medium Stories是由yelysei開發的Chrome擴展程式,該擴展的主要功能是“Helps Medium writers to separate their stories from comments”。
擴展截圖
下載Medium Stories擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | lokncfhfamceglahdpmlphafpejonebp |
| 官方網址 | 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
} | |