Medium Scheduled Stories

Shows whether your story is scheduled for publication

Medium Scheduled Stories란 무엇입니까?

Medium Scheduled Stories은(는) arousedbywords에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows whether your story is scheduled for publication"입니다.

확장 프로그램 스크린샷

screenshot

Medium Scheduled Stories 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Did you ever submit that great article to that awesome publication? After submitting you dream about all the views, the comments and all the great things that this new story will bring. Except… The publication does not publish your masterpiece. What's going on?

There are publications out there that schedule stories to be published later. This little extension shows you whether that's going on with your article. It actually also tells you if you have delayed publishing yourself.

This extension adds a message to the edit-story-page if your story is scheduled for publication. Nothing is displayed if it's not scheduled.

🚀 FEATURES
 ⭐️ Shows if your story is scheduled, either by you or a publication

📅 CHANGELOG
v1.0 - initial release

🧩 SOURCE CODE
The source code is available on https://github.com/muffinimal/medium-story-scheduled-for-publication

🐛 FEATURE REQUESTS AND BUG REPORTS
It's probably easiest to give shoot me a message at medium: https://muffinimal.medium.com/ if you want to report a bug or request a feature                    

확장 프로그램 기본 정보

이름 Medium Scheduled Stories Medium Scheduled Stories
ID nacoknicpdcjapjpndphhhjmogcpoled
공식 URL https://chromewebstore.google.com/detail/medium-scheduled-stories/nacoknicpdcjapjpndphhhjmogcpoled
설명 Shows whether your story is scheduled for publication
파일 크기 40.65 KB
설치 횟수 68
현재 버전 1.0
최근 업데이트 2021-10-12
출시 날짜 2021-10-12
개발자 arousedbywords
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://muffinimal.medium.com/
도움말 페이지 URL https://muffinimal.medium.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Medium Scheduled Stories",
    "description": "Shows whether your story is scheduled for publication",
    "version": "1.0",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "action": {
        "default_title": "Medium Scheduled Stories",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "js": [
                "src\/scheduled-post.js"
            ],
            "matches": [
                "*:\/\/*.medium.com\/p\/*"
            ],
            "css": [
                "css\/scheduled.css"
            ]
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    }
}