A Chrome extension that helps you identify and filter out Studio Ghibli-related content from Twitter. This project consists of a Flask backend service that performs image classification and a Chrome extension that integrates with it.
- Download the
extension
directory from the release page - Go to
chrome://extensions/
- Enable "Developer mode" in the top right corner
- Click "Load unpacked" and select the
extension
directory
.
├── flask/ # Backend Flask application
│ ├── app.py # Main Flask application
│ ├── requirements.txt # Python dependencies
│ ├── model.keras # Trained Keras model
│ └── ghibli/ # Additional Ghibli-related files
└── extension/ # Chrome extension
├── manifest.json # Extension configuration
├── popup.html # Extension popup interface
├── popup.js # Popup functionality
├── popup.css # Popup styling
├── content.js # Content script for webpage interaction
└── images/ # Extension icons and images
- Real-time detection of Studio Ghibli-related images on Twitter
- Hides the entire tweet if it contains a Studio Ghibli-related image / video
- User-friendly popup interface for controlling the extension
- Efficient image classification using a trained Keras model
- Python 3.8 or higher
- Chrome browser
- Node.js and npm (for development)
-
Navigate to the Flask directory:
cd flask
-
Create a virtual environment (recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Start the Flask server:
python app.py
The backend server will start on http://localhost:5000
by default.
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode" in the top right corner
- Click "Load unpacked" and select the
extension
directory from this project - The extension icon should appear in your Chrome toolbar
- Click the extension icon in your Chrome toolbar to open the popup interface
- Use the toggle switch to enable/disable Ghibli content detection
- Browse Twitter as usual - the extension will automatically detect and handle Ghibli-related content
The Flask backend uses:
- Flask for the web server
- TensorFlow/Keras for image classification
- Flask-CORS for handling cross-origin requests
- Gunicorn for production deployment
The Chrome extension is built with:
- Vanilla JavaScript
- Chrome Extension APIs
- HTML/CSS for the popup interface
The Flask backend provides the following endpoints:
POST /predict
: Accepts image data and returns classification resultsGET /health
: Health check endpoint
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request