Medium Scheduled Stories
Shows whether your story is scheduled for publication
Cos'è Medium Scheduled Stories?
Medium Scheduled Stories è un'estensione di Chrome sviluppata da arousedbywords, e la sua funzione principale è "Shows whether your story is scheduled for publication".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Medium Scheduled Stories
Scarica i file di estensione Medium Scheduled Stories in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Medium Scheduled Stories |
ID | nacoknicpdcjapjpndphhhjmogcpoled |
URL Ufficiale | https://chromewebstore.google.com/detail/medium-scheduled-stories/nacoknicpdcjapjpndphhhjmogcpoled |
Descrizione | Shows whether your story is scheduled for publication |
Dimensione del File | 40.65 KB |
Conteggio Installazioni | 68 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-10-12 |
Data di Pubblicazione | 2021-10-12 |
Sviluppatore | arousedbywords |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://muffinimal.medium.com/ |
URL della Pagina di Aiuto | https://muffinimal.medium.com/ |
Lingue Supportate | 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" } } |