├── after.png ├── before.png ├── no-moments.css ├── icons ├── 128.png ├── 16.png ├── 48.png ├── icon.psd └── chrome-store.png ├── manifest.json └── README.md /after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/after.png -------------------------------------------------------------------------------- /before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/before.png -------------------------------------------------------------------------------- /no-moments.css: -------------------------------------------------------------------------------- 1 | #global-actions > .moments { 2 | display: none; 3 | } 4 | -------------------------------------------------------------------------------- /icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/icons/128.png -------------------------------------------------------------------------------- /icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/icons/16.png -------------------------------------------------------------------------------- /icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/icons/48.png -------------------------------------------------------------------------------- /icons/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/icons/icon.psd -------------------------------------------------------------------------------- /icons/chrome-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ungoldman/no-moments/HEAD/icons/chrome-store.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 2, 3 | "name": "No Moments for Twitter", 4 | "version": "1.0.0", 5 | "description": "A chrome extension that hides the Moments button on the Twitter website.", 6 | "homepage_url": "http://github.com/ngoldman/no-moments", 7 | "icons": { 8 | "16": "icons/16.png", 9 | "48": "icons/48.png", 10 | "128": "icons/128.png" 11 | }, 12 | "content_scripts": [ 13 | { 14 | "matches": [ 15 | "https://twitter.com/*" 16 | ], 17 | "css": ["no-moments.css"] 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # No Moments 2 | 3 | > A chrome extension that hides the Moments button on the Twitter website. 4 | 5 | ![No Moments](icons/48.png) 6 | 7 | **Before:** 8 | 9 | ![before image](before.png) 10 | 11 | **After:** 12 | 13 | ![after image](after.png) 14 | 15 | ## Install 16 | 17 | **Option 1:** 18 | 19 | Install **[No Moments for Twitter](https://chrome.google.com/webstore/detail/no-moments-for-twitter/kenlkkgfablehdjlhidnacobagpcbmcp)** by going to the Chrome Web Store. 20 | 21 | **Option 2:** 22 | 23 | 1. Download a `zip` from the [releases](https://github.com/ngoldman/no-moments/releases/) section and unzip it on your local hard drive. 24 | 2. Open `chrome://extensions/`. 25 | 3. Make sure `Developer mode` is enabled. 26 | 4. Click `Load unpacked extension...` and select the directory where you unzipped this extension. 27 | 28 | Presto! No Moments. 29 | 30 | ## Disclaimer 31 | 32 | This extension is distributed free of charge and made for educational/practical purposes only! No harm is intended toward the great nation of Twitter. I just don't want to accidentally click the `Moments` button anymore. 33 | 34 | ## License 35 | 36 | [CC0](https://wiki.creativecommons.org/wiki/CC0) 37 | --------------------------------------------------------------------------------