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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}