aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2022-06-25cws-status: Align extension name and version in two columnsTeddy Wing
Rather than output a single tab to separate the extension name and version, use `ljust` to create two visual columns.
2022-06-25Add READMETeddy Wing
2022-06-25cws-status: Add program version and `--version` command line argumentTeddy Wing
2022-06-25cws-status: Add trailing commasTeddy Wing
2022-06-25cws-status: Match regex anywhere in the nameTeddy Wing
I didn't realise that `re.match()` only matches starting at the beginning of the string rather than matching anywhere inside it: https://docs.python.org/3/library/re.html#re.match Switch to `re.search()` to get the desired behaviour.
2022-06-25Add license (GNU GPLv3+)Teddy Wing
2022-06-25cws-status: Add script descriptionTeddy Wing
2022-06-25cws-status: Add sections to make the script easier to readTeddy Wing
Split up the different actions into logical sections.
2022-06-25cws-status: Add command line argument parsingTeddy Wing
Get the CWS dashboard URL and Chrome cookie path from command line arguments.
2022-06-25cws-status: Add error when not authenticatedTeddy Wing
2022-06-25cws-status: Take regex command line argument to filter extensionsTeddy Wing
The script now accepts a command line argument that filters the list of extension names and prints the matches as output.
2022-06-25requirements.txt: Add 'lxml' dependencyTeddy Wing
2022-06-25Extract extension names and publish statuses from the pageTeddy Wing
2022-06-25Experiments downloading the Chrome Web Store dashboard pageTeddy Wing
2022-06-18Describe ideaTeddy Wing