Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robot-inventor/spam-tweets-compressor
A browser extension that protects you from tweets that you feel are harassing or threatening by "your standards".
https://github.com/robot-inventor/spam-tweets-compressor
browser-extension chrome-extension firefox-addon firefox-extension twitter
Last synced: 12 days ago
JSON representation
A browser extension that protects you from tweets that you feel are harassing or threatening by "your standards".
- Host: GitHub
- URL: https://github.com/robot-inventor/spam-tweets-compressor
- Owner: Robot-Inventor
- License: mit
- Created: 2021-04-13T03:37:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-22T01:54:53.000Z (17 days ago)
- Last Synced: 2024-10-23T07:27:25.978Z (16 days ago)
- Topics: browser-extension, chrome-extension, firefox-addon, firefox-extension, twitter
- Language: TypeScript
- Homepage:
- Size: 5.89 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Spam Tweets Compressor
[この内容を日本語で読む](README_ja.md)
[![Known Vulnerabilities](https://snyk.io/test/github/Robot-Inventor/spam-tweets-compressor/badge.svg)](https://snyk.io/test/github/Robot-Inventor/spam-tweets-compressor/) [![CodeQL](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/codeql-analysis.yml) [![NodeJS with Webpack](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/webpack.yml/badge.svg)](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/webpack.yml) [![eslint](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/eslint.yml/badge.svg)](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/eslint.yml) [![stylelint](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/stylelint.yml/badge.svg)](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/stylelint.yml) [![test](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/test.yml/badge.svg)](https://github.com/Robot-Inventor/spam-tweets-compressor/actions/workflows/test.yml)
![logo](image/logo.svg)
This extension protects you from tweets that you feel are harassing or threatening by "your standards".
## Summary
What kind of tweets are perceived as harassment or threats varies from person to person. It can be difficult to judge objectively. This extension hides tweets that you judge to be "harassing or threatening" based on "your criteria". This is an unofficial browser extension to protect yourself from mindless maliciousness when replying to yourself or viewing tweets about yourself!
You can also hide the tweets of people who send "threats," "harassment of any kind," "promotion of violence," "posting of gross images," etc. with hashtags to specific female idols and female streamers.
### ✔ What this does
- You can protect your mind by hiding tweets that are harassing or threatening
- You can hide them only in your own browser, so you cannot hide them in other people's browsers### ✖ What this can't do
- There is no automatic reporting of tweets deemed potentially harassing or threatening, or the ability to mute or block the poster
- Hide only on your browser. Can't be hidden on other people's browsers
- Only works on [twitter.com](https://twitter.com) and [mobile.twitter.com](https://mobile.twitter.com). Will not work with other Twitter clients or mobile apps### ⚠ Precaution
- This is an unofficial extension, Twitter is not involved in any way
- Hides "possibly" harassing or threatening tweets. False positives and false negatives can also occur[](https://chrome.google.com/webstore/detail/spam-tweets-compressor/ahbajmjkdmknfdkcppkginogfjmpefjf)
[](https://addons.mozilla.org/firefox/addon/spam-tweets-compressor/)### Report Bugs and Suggest Features
Bug reports and feature suggestions should be sent to one of the following places.
- GitHub [Issues](https://github.com/Robot-Inventor/spam-tweets-compressor/issues)(If you have a GitHub account)
- [Chrome Web Store](https://chrome.google.com/webstore/detail/spam-tweets-compressor/ahbajmjkdmknfdkcppkginogfjmpefjf)'s [Support] section(If you are using Google Chrome)
- [AMO](https://addons.mozilla.org/firefox/addon/spam-tweets-compressor/)'s review(If you are using Mozilla Firefox)## Supported Browsers
- Google Chrome
- Mozilla Firefox
- Chromium-based browsers (e.g. Microsoft Edge)Note: The only browsers that have been tested are Google Chrome and Mozilla Firefox; Chromium-based browsers are likely to work correctly because they are internally identical to Google Chrome.
## Installation
You can install the extension from each browser's extension store.
- [Chrome Web Store (Google Chrome)](https://chrome.google.com/webstore/detail/spam-tweets-compressor/ahbajmjkdmknfdkcppkginogfjmpefjf)
- [AMO (Mozilla Firefox)](https://addons.mozilla.org/ja/firefox/addon/spam-tweets-compressor/)## Judgment Method
This extension determines whether to hide a tweet based on the following factors.
- NG words
- Advanced Filters## About Personal Information
This extension does not send any information to the outside world, as the analysis takes place only on the user's PC. But please note that the extension will automatically receive "data to update the Advance Filter".
This extension will only use the permissions for the following purposes
- Interferes with [twitter.com](https://twitter.com) and [mobile.twitter.com](https://mobile.twitter.com) to determine whether the displayed tweets are spam or not and hides tweets that are determined to be spam
- Uses storage permission to save the extension settings in the user folder. Does not send settings to external clouds or servers
- Access [cdn.statically.io](https://cdn.statically.io) to receive the latest spam information for Advanced Filter## Development
When developing, first install the necessary packages.
```sh
npm install
```### Lint
```sh
npm run lint:css
npm run lint:js# lint CSS and JS
npm run lint
```### Format
```sh
npm run format
```### Test
```sh
npm run test
```### Build
```sh
npm run build:css
npm run build:js# build CSS and JS
npm run build
```or
```sh
npm run watch:css
npm run watch:js# watch CSS and JS
npm run watch
```### Package
```sh
npm run pack
```