From 8ed95d525efb527f561e9520b70f8b6c2b253836 Mon Sep 17 00:00:00 2001 From: aritra-codes Date: Mon, 3 Jun 2024 20:08:40 +0100 Subject: [PATCH] Added feature so all text is selectable in contentScript.css & Changed content script matches in manifest.json & Added features section in & Updated main description in & Added stars badge in README.md --- README.md | 14 ++++++++++++-- public/assets/contentScript.css | 4 ++++ public/manifest.json | 4 ++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 947727a..76fef12 100644 --- a/README.md +++ b/README.md @@ -4,21 +4,31 @@ # Sparx Bookwork Tracker ![GitHub Release Date](https://img.shields.io/github/release-date/aritra-codes/sparx-bookwork-tracker) + ![GitHub Repo stars](https://img.shields.io/github/stars/aritra-codes/sparx-bookwork-tracker) + ## Tired of bookwork checks? ✅ - `Sparx Bookwork Tracker` **automatically** tracks your answers and shows you the answer to bookwork checks. Also, includes option to **automatically** click 'next' buttons. + `Sparx Bookwork Tracker` **automatically** tracks your answers and shows you the answer to bookwork checks. Also includes more time-saving features! **Less work, More progress! 💪** ![A gif of the extension running](readme_files/running.gif) - If this helps you, please ⭐ the repository & [follow me](https://github.com/aritra-codes)! + If this helps you, please ⭐ the repository & [follow me](https://github.com/aritra-codes) :D --- +# ✨ Features + +- Automatically saves answers and shows you the **answer to bookwork checks**. +- Automatically **clicks 'next' buttons** (e.g. Continue, Next task) when Auto-next is on. +- Makes **all text selectable**. + +--- + # ⬇️ Installation Currently only supported by browsers that allow Chrome-based extensions (e.g. Chrome, Brave, Edge, Opera). diff --git a/public/assets/contentScript.css b/public/assets/contentScript.css index edd243e..e3c3801 100644 --- a/public/assets/contentScript.css +++ b/public/assets/contentScript.css @@ -1,3 +1,7 @@ +:root { + --user-select-accessibility-setting: default !important; /* Makes all text selectable */ +} + .screenshot { width: 600px; min-height: 337.5px; diff --git a/public/manifest.json b/public/manifest.json index 9538d46..19939a7 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -32,8 +32,8 @@ "assets/contentScript.css" ], "matches": [ - "https://*.sparxmaths.com/student/*", - "https://*.sparxmaths.uk/student/*" + "https://*.sparxmaths.com/*", + "https://*.sparxmaths.uk/*" ] } ],