aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2022-06-25 17:15:00 +0200
committerTeddy Wing2022-06-25 17:18:44 +0200
commita74df0cb2414266028cdecdf8ec0dec36c64364d (patch)
tree1bba87a81bf2b00de17bb3820a40b4333415c4ab
parent8e20cc051b33cab0f39c80baa4c7f589f9f280a6 (diff)
downloadcws-status-a74df0cb2414266028cdecdf8ec0dec36c64364d.tar.bz2
Add README
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..1cbc1d6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
+cws-status
+==========
+
+Check the publish status of your extensions on the Google Chrome Web Store from
+the command line.
+
+No API presently exists for querying extensions’ publish status. In order to get
+this information, the Chrome Web Store developer dashboard is scraped,
+authenticating with the cookies from the Google Chrome browser.
+
+
+## Usage
+
+ $ cws-status \
+ --url 'https://chrome.google.com/webstore/devconsole/<UUID>' \
+ --cookie-path '~/Library/Application Support/Google/Chrome/Profile 1/Cookies' \
+ Example
+ Example extension BETA (Version 1.0) Published to testers
+ Example extension (Version 1.0) Published - public
+
+
+## Install
+
+ $ git clone https://github.com/teddywing/cws-status.git
+ $ cd cws-status
+ $ python3 -m venv venv
+ $ source ./venv/bin/activate
+ $ pip install -r requirements.txt
+
+
+## License
+Copyright © 2022 Teddy Wing. Licensed under the GNU GPLv3+ (see the included
+COPYING file).