Medium Stories
Helps Medium writers to separate their stories from comments
Cos'è Medium Stories?
Medium Stories è un'estensione di Chrome sviluppata da yelysei, e la sua funzione principale è "Helps Medium writers to separate their stories from comments".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Medium Stories
Scarica i file di estensione Medium 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
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.
Informazioni di Base sull'Estensione
Nome | Medium Stories |
ID | lokncfhfamceglahdpmlphafpejonebp |
URL Ufficiale | https://chromewebstore.google.com/detail/medium-stories/lokncfhfamceglahdpmlphafpejonebp |
Descrizione | Helps Medium writers to separate their stories from comments |
Dimensione del File | 10.69 KB |
Conteggio Installazioni | 86 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2020-12-25 |
Data di Pubblicazione | 2020-04-07 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | yelysei |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |