This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Privacy Policy for Manage Tabs | |
| Last updated: 2026-07-09 | |
| Manage Tabs is a browser extension designed to help you manage your open tabs, free up system memory, and save tab sessions. We respect your privacy and are committed to protecting it. | |
| ## What Data We Access | |
| To function properly, Manage Tabs accesses the following information: | |
| 1. **Tabs Data (Web history):** The extension reads the URLs, titles, and favicons of the tabs you currently have open in your browser. This is strictly required to display your active tabs in the extension popup and allow you to close, sleep (discard), or save them. | |
| 2. **Local Storage:** The extension reads and writes to your browser's local storage to securely store your "Saved Tabs" list, "Offline Saved Tabs" list, and your theme preferences (Light/Dark mode). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ############################################ NOTE ######################################################## | |
| # | |
| # Creates NER training data in Spacy format from JSON downloaded from Dataturks. | |
| # | |
| # Outputs the Spacy training data which can be used for Spacy training. | |
| # | |
| ############################################################################################################ | |
| def convert_dataturks_to_spacy(dataturks_JSON_FilePath): | |
| try: | |
| training_data = [] |