{"id":20679927,"url":"https://github.com/smuecke/regextube","last_synced_at":"2026-05-18T19:02:49.725Z","repository":{"id":163064212,"uuid":"141169480","full_name":"smuecke/regextube","owner":"smuecke","description":"Firefox addon for filtering YouTube subscription feed using regular expressions","archived":false,"fork":false,"pushed_at":"2018-07-23T16:31:01.000Z","size":92,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-10T19:48:14.800Z","etag":null,"topics":["filter","firefox-addon","firefox-extension","regex","regular-expression","youtube"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smuecke.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":"2018-07-16T17:13:50.000Z","updated_at":"2018-07-23T16:31:02.000Z","dependencies_parsed_at":"2023-06-02T16:00:39.780Z","dependency_job_id":null,"html_url":"https://github.com/smuecke/regextube","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/smuecke/regextube","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smuecke%2Fregextube","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smuecke%2Fregextube/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smuecke%2Fregextube/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smuecke%2Fregextube/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smuecke","download_url":"https://codeload.github.com/smuecke/regextube/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smuecke%2Fregextube/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008857,"owners_count":26084518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["filter","firefox-addon","firefox-extension","regex","regular-expression","youtube"],"created_at":"2024-11-16T21:28:26.551Z","updated_at":"2025-10-11T21:35:34.122Z","avatar_url":"https://github.com/smuecke.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":" # RegexTube\n \n \u003ch1 align=\"center\"\u003e\n  \u003cbr\u003e\n  \u003cimg src=\"https://github.com/smuecke/regextube/blob/master/icons/regextube-256.png\" alt=\"RegexTube\" width=\"200\"\u003e\n\u003c/h1\u003e\n\u003ch4 align=\"center\"\u003eA browser addon for filtering the YouTube subscription feed using regular expressions\u003c/h4\u003e\n\nRegexTube is an addon for Firefox that allows to filter the [YouTube subscription feed](https://www.youtube.com/feed/subscriptions) using regular expression following the [JavaScript standard](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions). \n\n* filter by channel name and video title (**blacklist**)\n* invert filter, so only videos that *do not* match are displayer (**whitelist**)\n* easily enable and disable filter rules\n\n## Usage\n\n![Popup](https://i.imgur.com/e0G6HiS.png)\n\nThis is the popup menu allowing you to enter regexes. Both *channel* and *title* can be regular expressions. A video matches a line within the list of regular expression if both *channel* and *title* match. Checking the *invert* checkbox only inverts the *title* expression, not the *channel*. A video is hidden if it matches one or more lines.\n\nSome more examples for regular expressions:\n\n| channel | title | invert | comment |\n| --- | --- | --- | --- |\n| `foo` | `bar` | false | will hide every video with a title containing `bar` by any channel whose name contains `foo` |\n| `foo` | `bar` | true | will hide every video with a title **not** containing `bar` by any channel whose name contains `foo` |\n| `^foo$` | `bar` | false | will hide every video with a title containing `bar` by the channel with the exact name `foo` |\n| `.*` | `ba[rz]` | true | will only show videos whose titles contain `bar` or `baz`, regardless of the channel |\n| `LP$` | `.*` | false | will hide every video by channels whose names end in `LP`. But why would you subscribe in the first place? |\n\n## Installation\n\nCurrently RegexTube is not officially published and can only be manually installed. Note that the plugin was only tested on Firefox Quantum 60.0.2 (64-bit) on a Ubuntu system, also it is not signed, so Firefox will display a warning before installing.\n\nThis easy installation will probably work:\n\n1. Download `firefox/RegexTube.xpi` from this repository\n2. Continue with step 4 below\n\nYou also might want to pack the addon yourself, e.g. after you modified it:\n\n1. Clone `https://github.com/smuecke/regextube.git` to your computer to a directory `regextube`\n2. Select all files within `regextube/firefox` (except for `README.md` and the old `RegexTube.xpi` file) and compress them to a .zip file\n3. Select the .zip file, press `F2` and change the file name to `RegexTube.xpi`\n4. In Firefox, open the Addons menu (e.g. by typing `about:addons` in your URL bar)\n5. Click on the gear symbol near the top and select *install addon from file*, then choose `RegexTube.xpi`\n6. Confirm that you want to add the addon\n\nI might get RegexTube properly signed and published in the future.\n\n## License\n\nMIT © [Sascha Mücke](https://github.com/smuecke)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmuecke%2Fregextube","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmuecke%2Fregextube","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmuecke%2Fregextube/lists"}