Twitter Origifier

Makes twitter images their original resolution

What is Twitter Origifier?

Twitter Origifier is a Chrome extension developed by @nathanwentworth, and its main feature is "Makes twitter images their original resolution".

Download Twitter Origifier Extension CRX File

Download Twitter Origifier 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

                        Twitter hides their full-resolution images behind a :orig url flag, this extension automatically adds or replaces the suffix to always show twitter images in their original resolution.

How to use!
1. Right click image on twitter
2. Open in a new tab
3. Done!                    

Extension Basic Information

Name Twitter Origifier Twitter Origifier
ID lcbhlbbekpaklnhgfcccpdplhegpjkjk
Official URL https://chromewebstore.google.com/detail/twitter-origifier/lcbhlbbekpaklnhgfcccpdplhegpjkjk
Description Makes twitter images their original resolution
File Size 3.28 KB
Installation Count 32
Current Version 1.3
Last Updated 2017-11-27
Publish Date 2017-11-27
Developer @nathanwentworth
Email [email protected]
Payment Type free
Extension Website https://nathanwentworth.co
Help Page URL https://twitter.com/nathanwentworth
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Origifier",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Makes twitter images their original resolution",
    "homepage_url": "https:\/\/nathanwentworth.co",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/pbs.twimg.com\/media\/*"
            ],
            "js": [
                "origifier.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab"
    ]
}