├── .eslintrc.js ├── LICENSE ├── README.md └── extension ├── _locales ├── en │ └── messages.json └── pt_BR │ └── messages.json ├── content.js ├── icon.svg ├── manifest.json └── options ├── options.css ├── options.html └── options.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/README.md -------------------------------------------------------------------------------- /extension/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/_locales/en/messages.json -------------------------------------------------------------------------------- /extension/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /extension/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/content.js -------------------------------------------------------------------------------- /extension/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/icon.svg -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/manifest.json -------------------------------------------------------------------------------- /extension/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/options/options.css -------------------------------------------------------------------------------- /extension/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/options/options.html -------------------------------------------------------------------------------- /extension/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiansh/block-twitter-promoted/HEAD/extension/options/options.js --------------------------------------------------------------------------------