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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Medium Stories 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
Eメール ylukin277@gmail.com
支払い方法 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
}