Instagram Redesigned
A new, modern look for Instagram web
What is Instagram Redesigned?
Instagram Redesigned is a Chrome extension developed by ivocass, and its main feature is "A new, modern look for Instagram web".
Extension Screenshots
Download Instagram Redesigned Extension CRX File
Download Instagram Redesigned 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
This add-on updates Instagram in subtle ways, to make it look more polished an minimal. It also adds a 'Dark Mode' button to the user menu and an 'Open media in new tab' when hovering photos, videos and stories. The code is open-source at https://github.com/ivocass/instagram-redesigned
Extension Basic Information
Name | |
ID | edcomepdkpdidhcclphgpgmmbpgogofg |
Official URL | https://chrome.google.com/webstore/detail/instagram-redesigned/edcomepdkpdidhcclphgpgmmbpgogofg |
Description | A new, modern look for Instagram web |
File Size | 36.81 KB |
Installation Count | 839 |
Current Version | 0.0.2.1 |
Last Updated | 2022-01-07 |
Publish Date | 2020-09-30 |
Rating | 5.00/5 Total 20 Ratings |
Developer | ivocass |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ivocass/instagram-redesigned |
Help Page URL | https://github.com/ivocass/instagram-redesigned/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Instagram Redesigned", "version": "0.0.2.1", "description": "A new, modern look for Instagram web", "permissions": [ "storage" ], "browser_action": { "default_icon": { "16": "assets\/logo16.png", "32": "assets\/logo32.png", "48": "assets\/logo48.png", "128": "assets\/logo128.png" }, "default_popup": "src\/popup.html" }, "icons": { "16": "assets\/logo16.png", "32": "assets\/logo32.png", "48": "assets\/logo48.png", "128": "assets\/logo128.png" }, "web_accessible_resources": [ "assets\/chevron.png", "assets\/open-media.png", "assets\/dark-theme-icon.png" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "css": [ "src\/css\/styles.css" ], "js": [ "src\/js\/content-script.js" ] } ], "manifest_version": 2 } |