PublishTo.Dev Extension
Schedule publishing for draft posts on Dev.To
PublishTo.Dev Extensionとは何ですか?
PublishTo.Dev Extensionはhttps://publishto.devによって開発されたChromeの拡張機能で、その主な機能は「Schedule publishing for draft posts on Dev.To」です。
拡張機能のスクリーンショット
PublishTo.Dev Extension拡張機能のCRXファイルをダウンロード
PublishTo.Dev Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension connects to a hosted cloud service running on Azure and enables authors to schedule publishing of draft posts on Dev.To. Once configured with an author's unique DevTo API key, simply use the extension on the unpublished draft page to choose a future time when the post should go live. Once scheduled, a cloud service will update the DevTo post the specified time to make it live on the site. UPDATES ======== [Aug 2020: v0.1.8] - Updated extension to work with redesigned draft post page on Dev.To [Nov 2019: v0.1.7] - Added button to go directly to extension options if API key missing [Jul 2019: v0.1.0] - Initial release
拡張機能の基本情報
名前 | PublishTo.Dev Extension |
ID | bohbnpnialpdpgnibbddaaoaklmnjoaa |
公式URL | https://chromewebstore.google.com/detail/publishtodev-extension/bohbnpnialpdpgnibbddaaoaklmnjoaa |
説明 | Schedule publishing for draft posts on Dev.To |
ファイルサイズ | 106 KB |
インストール数 | 44 |
現在のバージョン | 0.1.8 |
最終更新日 | 2020-08-12 |
公開日 | 2019-11-26 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://publishto.dev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.publishto.dev |
ヘルプページのURL | https://github.com/toddanglin/PublishToDev |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PublishTo.Dev Extension", "short_name": "PublishToDev", "description": "Schedule publishing for draft posts on Dev.To", "version": "0.1.8", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "icon-16.png", "default_popup": "popup.html" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/publishto-dev.azurewebsites.net\/api\/schedulePost" ], "js": [ "js\/vendor.js" ] } ], "permissions": [ "storage", "activeTab" ], "web_accessible_resources": [ "src\/options\/options.html" ] } |