wepub-core 0.2.0

Library for publishing browser extensions to Chrome Web Store and Firefox AMO
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Chrome Web Store Publish API (v2) client.
//!
//! The entry point is [`ChromeStore`]. Build it with either an OAuth refresh
//! token ([`ChromeStore::from_client_credentials`]) or a pre-fetched access
//! token ([`ChromeStore::from_access_token`]), then call
//! [`ChromeStore::publish`] to upload a packaged extension and submit it for
//! review.

mod api;
mod auth;

pub use api::{ChromePollConfig, ChromePublishOptions, ChromeStore, PublishType};