Medium Scheduled Stories
Shows whether your story is scheduled for publication
Medium Scheduled Stories क्या है?
Medium Scheduled Stories arousedbywords द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows whether your story is scheduled for publication"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Medium Scheduled Stories एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |