Redesign for Instagram
A new, modern look for Instagram web
What is Redesign for Instagram?
Redesign for Instagram is a Chrome extension developed by ivocass, and its main feature is "A new, modern look for Instagram web".
Extension Screenshots
Download Redesign for Instagram Extension CRX File
Download Redesign for Instagram 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 and stories. The code is open-source at https://github.com/ivocass/instagram-redesigned
Extension Basic Information
Name | |
ID | lhgbjhmblmfcgaklgpiebkeecgpkejhf |
Official URL | https://chrome.google.com/webstore/detail/redesign-for-instagram/lhgbjhmblmfcgaklgpiebkeecgpkejhf |
Description | A new, modern look for Instagram web |
File Size | 36.45 KB |
Installation Count | 272 |
Current Version | 0.0.3.3 |
Last Updated | 2022-08-19 |
Publish Date | 2022-02-21 |
Rating | 5.00/5 Total 4 Ratings |
Developer | ivocass |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ivocass/instagram-redesigned |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Redesign for Instagram", "version": "0.0.3.3", "description": "A new, modern look for Instagram web", "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": [ { "resources": [ "assets\/chevron.png", "assets\/open-media.png", "assets\/dark-theme-icon.png" ], "matches": [ "https:\/\/www.instagram.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "css": [ "src\/css\/styles.css" ], "js": [ "src\/js\/content-script.js" ] } ], "manifest_version": 3 } |