Medium Stories

Helps Medium writers to separate their stories from comments

Medium Stories là gì?

Medium Stories là một tiện ích mở rộng Chrome được phát triển bởi yelysei, và tính năng chính của nó là "Helps Medium writers to separate their stories from comments".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Medium Stories

Tải xuống các tệp mở rộng Medium Stories 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

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Medium Stories Medium Stories
ID lokncfhfamceglahdpmlphafpejonebp
URL Chính Thức https://chromewebstore.google.com/detail/medium-stories/lokncfhfamceglahdpmlphafpejonebp
Mô tả Helps Medium writers to separate their stories from comments
Kích Thước Tệp 10.69 KB
Số Lần Cài Đặt 86
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2020-12-25
Ngày Phát Hành 2020-04-07
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển yelysei
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}