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”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
    ]
}