Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hensm/hide_private_mode
https://github.com/hensm/hide_private_mode
firefox webextension
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hensm/hide_private_mode
- Owner: hensm
- License: mit
- Created: 2019-07-18T18:09:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-04-07T00:19:49.000Z (over 4 years ago)
- Last Synced: 2024-10-30T13:38:09.666Z (14 days ago)
- Topics: firefox, webextension
- Language: TypeScript
- Homepage: https://addons.mozilla.org/en-GB/firefox/addon/hide-private-mode/
- Size: 185 KB
- Stars: 25
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hide Private Mode
Firefox extension that provides an [IndexedDB implementation](https://github.com/dumbmatter/fakeIndexedDB) to sites in private browsing mode.
## Usage
Ensure the extension is allowed to run in private windows:
https://support.mozilla.org/en-US/kb/extensions-private-browsing## Building
### Requirements
* Node.js
### Instructions
````sh
git clone https://github.com/hensm/hide_private_mode
cd hide_private_mode
npm install
npm run build
````| npm script | Description |
| ---------- | ----------- |
| `build` | Builds to `./dist`. |
| `watch` | Builds to `./dist` and listens for changes. |
| `start` | Starts Firefox with built extension. |
| `lint` | Runs TSLint on source files. |
| `package` | Runs `build` in production mode and outputs extension archive to `./web-ext-artifacts`. |