No Twitter Crop

Get rid of Twitter's image crop on single image tweets.

What is No Twitter Crop?

No Twitter Crop is a Chrome extension developed by Jaebirds, and its main feature is "Get rid of Twitter's image crop on single image tweets.".

Extension Screenshots

screenshot

Download No Twitter Crop Extension CRX File

Download No Twitter Crop 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 has updated its mobile app so that it displays vertical sized images properly, but the desktop version still has an awful crop. This extension simply fixes the site so that vertical sized images will display properly. This only works for single image posts, not photosets.                    

Extension Basic Information

Name No Twitter Crop No Twitter Crop
ID amijdfkmcibipgokogloipabagonjmbb
Official URL https://chromewebstore.google.com/detail/no-twitter-crop/amijdfkmcibipgokogloipabagonjmbb
Description Get rid of Twitter's image crop on single image tweets.
File Size 6.81 KB
Installation Count 111
Current Version 1.02
Last Updated 2021-08-12
Publish Date 2021-08-11
Rating 4.20/5 Total 5 Ratings
Developer Jaebirds
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Twitter Crop",
    "description": "Get rid of Twitter's image crop on single image tweets.",
    "version": "1.02",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/notwittercrop16.png",
            "32": "\/images\/notwittercrop32.png",
            "48": "\/images\/notwittercrop48.png",
            "128": "\/images\/notwittercrop128.png"
        }
    },
    "icons": {
        "16": "\/images\/notwittercrop16.png",
        "32": "\/images\/notwittercrop32.png",
        "48": "\/images\/notwittercrop48.png",
        "128": "\/images\/notwittercrop128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "css": [
                "twitter.css"
            ]
        }
    ]
}