{"id":26793420,"url":"https://github.com/faisalsayed10/no-ghibli","last_synced_at":"2026-01-19T21:48:43.293Z","repository":{"id":284888040,"uuid":"956310963","full_name":"faisalsayed10/no-ghibli","owner":"faisalsayed10","description":"No Ghibli on Twitter","archived":false,"fork":false,"pushed_at":"2025-03-29T05:04:28.000Z","size":90106,"stargazers_count":331,"open_issues_count":0,"forks_count":31,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-02T02:52:44.456Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/faisalsayed10.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-28T03:27:30.000Z","updated_at":"2025-09-20T14:40:34.000Z","dependencies_parsed_at":"2025-03-28T08:32:34.519Z","dependency_job_id":null,"html_url":"https://github.com/faisalsayed10/no-ghibli","commit_stats":null,"previous_names":["faisalsayed10/no-ghibli"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/faisalsayed10/no-ghibli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faisalsayed10%2Fno-ghibli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faisalsayed10%2Fno-ghibli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faisalsayed10%2Fno-ghibli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faisalsayed10%2Fno-ghibli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/faisalsayed10","download_url":"https://codeload.github.com/faisalsayed10/no-ghibli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/faisalsayed10%2Fno-ghibli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28579034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T17:42:58.221Z","status":"ssl_error","status_checked_at":"2026-01-19T17:40:54.158Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-29T16:30:45.770Z","updated_at":"2026-01-19T21:48:43.278Z","avatar_url":"https://github.com/faisalsayed10.png","language":"Jupyter Notebook","funding_links":[],"categories":["Jupyter Notebook"],"sub_categories":[],"readme":"# No Ghibli Chrome Extension\n\nA 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.\n\n## Simplest Setup\n\n- Download the `extension` directory from the [release page](https://github.com/faisalsayed10/no-ghibli/releases)\n- Go to `chrome://extensions/`\n- Enable \"Developer mode\" in the top right corner\n- Click \"Load unpacked\" and select the `extension` directory\n\n## Project Structure\n\n```\n.\n├── flask/                 # Backend Flask application\n│   ├── app.py            # Main Flask application\n│   ├── requirements.txt  # Python dependencies\n│   ├── model.keras       # Trained Keras model\n│   └── ghibli/          # Additional Ghibli-related files\n└── extension/           # Chrome extension\n    ├── manifest.json    # Extension configuration\n    ├── popup.html      # Extension popup interface\n    ├── popup.js        # Popup functionality\n    ├── popup.css       # Popup styling\n    ├── content.js      # Content script for webpage interaction\n    └── images/         # Extension icons and images\n```\n\n## Features\n\n- Real-time detection of Studio Ghibli-related images on Twitter\n- Hides the entire tweet if it contains a Studio Ghibli-related image / video\n- User-friendly popup interface for controlling the extension\n- Efficient image classification using a trained Keras model\n\n## Prerequisites\n\n- Python 3.8 or higher\n- Chrome browser\n- Node.js and npm (for development)\n\n## Installation\n\n### Backend Setup\n\n1. Navigate to the Flask directory:\n\n   ```bash\n   cd flask\n   ```\n\n2. Create a virtual environment (recommended):\n\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n   ```\n\n3. Install dependencies:\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. Start the Flask server:\n   ```bash\n   python app.py\n   ```\n\nThe backend server will start on `http://localhost:5000` by default.\n\n### Chrome Extension Setup\n\n1. Open Chrome and navigate to `chrome://extensions/`\n2. Enable \"Developer mode\" in the top right corner\n3. Click \"Load unpacked\" and select the `extension` directory from this project\n4. The extension icon should appear in your Chrome toolbar\n\n## Usage\n\n1. Click the extension icon in your Chrome toolbar to open the popup interface\n2. Use the toggle switch to enable/disable Ghibli content detection\n3. Browse Twitter as usual - the extension will automatically detect and handle Ghibli-related content\n\n## Development\n\n### Backend Development\n\nThe Flask backend uses:\n\n- Flask for the web server\n- TensorFlow/Keras for image classification\n- Flask-CORS for handling cross-origin requests\n- Gunicorn for production deployment\n\n### Extension Development\n\nThe Chrome extension is built with:\n\n- Vanilla JavaScript\n- Chrome Extension APIs\n- HTML/CSS for the popup interface\n\n## API Endpoints\n\nThe Flask backend provides the following endpoints:\n\n- `POST /predict`: Accepts image data and returns classification results\n- `GET /health`: Health check endpoint\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Commit your changes\n4. Push to the branch\n5. Create a Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaisalsayed10%2Fno-ghibli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffaisalsayed10%2Fno-ghibli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffaisalsayed10%2Fno-ghibli/lists"}