HideRT

Show and hide retweets from Twitter timeline.

What is HideRT?

HideRT is a Chrome extension developed by Alan Dours, and its main feature is "Show and hide retweets from Twitter timeline.".

Extension Screenshots

screenshot
screenshot

Download HideRT Extension CRX File

Download HideRT extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Hide retweets from Twitter timeline.                    

Extension Basic Information

Name HideRT HideRT
ID gcekingpjldiahkdoddobmigpldmlojk
Official URL https://chromewebstore.google.com/detail/hidert/gcekingpjldiahkdoddobmigpldmlojk
Description Show and hide retweets from Twitter timeline.
File Size 16.7 KB
Installation Count 94
Current Version 1.1.1
Last Updated 2020-08-01
Publish Date 2019-05-17
Rating 4.00/5 Total 5 Ratings
Developer Alan Dours
Email [email protected]
Payment Type free
Extension Website https://github.com/alandours/hidert
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HideRT",
    "description": "Show and hide retweets from Twitter timeline.",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png"
        },
        "default_title": "Hide retweets"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "hidert.js"
            ],
            "css": [
                "hidert.css"
            ]
        }
    ]
}