https://github.com/johnlindquist/streamer-mode
https://github.com/johnlindquist/streamer-mode
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnlindquist/streamer-mode
- Owner: johnlindquist
- Created: 2019-11-11T21:31:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-15T15:49:46.000Z (over 6 years ago)
- Last Synced: 2025-05-31T08:29:20.322Z (about 1 year ago)
- Language: CSS
- Size: 81.1 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Token Hider Chrome Extension
## How it Works
This plugin injects CSS to change font colors to 0:
For example, here is the CSS injected into Github:
```css
code#new-oauth-token {
color: rgba(0, 0, 0, 0) !important;
}
```

## Warning
This only supports sites listed in the `manifest.json`. Please
submit a PR to add more sites!
## Adding a Site
1. Open at `manifest.json`
2. Copy/paste a content_scripts object
3. Customize to your URL and CSS needs
## Install
```
1. git clone
2. Open chrome://extensions/
3. Toggle "Developer mode"
4. "Load unpacked extension" and select this directory
```