├── .github └── ISSUE_TEMPLATE │ ├── something-else.md │ ├── bug_report.md │ └── feature_request.md ├── PRIVACY_POLICY.md ├── README.md └── LICENSE /.github/ISSUE_TEMPLATE/something-else.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Something else 3 | about: For everything else 4 | title: '' 5 | labels: question 6 | assignees: '' 7 | 8 | --- 9 | 10 | Got a question? 11 | Or you just want to note something? 12 | 13 | Speak your mind :) 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **Steps To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Open '...' 16 | 2. Click to '....' 17 | 3. The problem is that '....' 18 | 19 | **Expected behavior** 20 | A clear and concise description of what you expected to happen. 21 | 22 | **Device info:** 23 | - operating system: 24 | - Browser and version: 25 | - Auto Highlight version: 26 | 27 | 28 | **Additional info** 29 | Add any other info about the problem here. 30 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | AutoHighlight doesn't collect any data. 4 | User preferences (options page data) are stored only locally and are accessible only by extension itself. 5 | 6 | User defined highlighting rules are stored in the "browser.sync" storage which browser can synchronize across devices. 7 | This feature is NOT supported in Safari. 8 | To make it work in other browsers, you need to be logged in your browser specific profile and addons data synchronization must be enabled. 9 | Firefox is using end-to-end encrypted Firefox Sync engine. 10 | 11 | 12 | ## Permissions 13 | - "Access your data for all websites" - is required for every addon that needs to modify any page without user interaction (without clicking the toolbar icon or using the context menu item) 14 | 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Mozilla Add-on version](https://img.shields.io/amo/v/auto_highlight.svg)](https://addons.mozilla.org/addon/auto_highlight/?src=external-github-shield-downloads) 2 | [![Mozilla Add-on downloads](https://img.shields.io/amo/d/auto_highlight.svg)](https://addons.mozilla.org/addon/auto_highlight/?src=external-github-shield-downloads) 3 | [![Mozilla Add-on users](https://img.shields.io/amo/users/auto_highlight.svg)](https://addons.mozilla.org/addon/auto_highlight/statistics/) 4 | [![Mozilla Add-on stars](https://img.shields.io/amo/stars/auto_highlight.svg)](https://addons.mozilla.org/addon/auto_highlight/reviews/) 5 | 6 | [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/fastaddons) 7 | 8 | # AutoHighlight 9 | This repository is for tracking bugs and documentation only 10 | 11 | ### Privacy Policy 12 | [Read privacy policy here.](PRIVACY_POLICY.md) 13 | 14 | ### License 15 | [Copyright 2016-2021 Juraj Mäsiar - All Rights Reserved](LICENSE) 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | /* Copyright 2016 Juraj Mäsiar - All Rights Reserved */ 2 | 3 | What does this mean? 4 | This addon is not an open source. I use some open source tools to build it, but the addon itself is closed source. 5 | 6 | Why? 7 | Programming is my hobby, but I'm not a hobby programmer :). 8 | I work on my addons full time, every day, often also on weekends. And I've been doing so for a several years now. 9 | My only income are donations, and as you can see on my Patreon page, I'm not doing so well: 10 | https://www.patreon.com/fastaddons 11 | 12 | If I want to keep doing this, I need to monetize my work. And since I hate ads, and I'm not willing to sacrifice user privacy by sharing data with a 3rd party, the only option is a "Freemium" model - where basic features are free and premium features are paid. 13 | Sadly, "freemium" doesn't go well with "opensource" since anyone could copy it and release it fully free. 14 | I guess any addon developer would tell you that making a living out of addons development is hard... 15 | 16 | Is it safe to use non-open source software? 17 | Of course it is! It's much more important that you trust the author of the addon, not the code you see in GitHub! 18 | Popular addon authors receives many "nice looking" offers to monetize them or to buy them. It's up to the addon author to resist these shady offers! 19 | 20 | I'm not going to sell my addons to anyone and I don't plan to retire any time soon as I'm only 34 years young :). 21 | And did you know I'm official "Friend of Addons" at Mozilla? :) 22 | https://blog.mozilla.org/addons/2020/06/15/Friend-of-Add-ons-Juraj-Masiar/ 23 | 24 | My linked in contact: 25 | https://www.linkedin.com/in/juraj-masiar/ 26 | 27 | Enjoy my addons :) 28 | I hope they make you more productive! 29 | --------------------------------------------------------------------------------