PublishTo.Dev Extension

Schedule publishing for draft posts on Dev.To

PublishTo.Dev Extension là gì?

PublishTo.Dev Extension là một tiện ích mở rộng Chrome được phát triển bởi https://publishto.dev, và tính năng chính của nó là "Schedule publishing for draft posts on Dev.To".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PublishTo.Dev Extension

Tải xuống các tệp mở rộng PublishTo.Dev Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PublishTo.Dev Extension PublishTo.Dev Extension
ID bohbnpnialpdpgnibbddaaoaklmnjoaa
URL Chính Thức https://chromewebstore.google.com/detail/publishtodev-extension/bohbnpnialpdpgnibbddaaoaklmnjoaa
Mô tả Schedule publishing for draft posts on Dev.To
Kích Thước Tệp 106 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 0.1.8
Cập Nhật Lần Cuối 2020-08-12
Ngày Phát Hành 2019-11-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://publishto.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.publishto.dev
URL Trang Trợ Giúp https://github.com/toddanglin/PublishToDev
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}