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文件

下載Medium Scheduled Stories擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}