Instagram Redesigned
A new, modern look for Instagram web
Cos'è Instagram Redesigned?
Instagram Redesigned è un'estensione di Chrome sviluppata da ivocass, e la sua funzione principale è "A new, modern look for Instagram web".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Instagram Redesigned
Scarica i file di estensione Instagram Redesigned in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | edcomepdkpdidhcclphgpgmmbpgogofg |
URL Ufficiale | https://chrome.google.com/webstore/detail/instagram-redesigned/edcomepdkpdidhcclphgpgmmbpgogofg |
Descrizione | A new, modern look for Instagram web |
Dimensione del File | 36.81 KB |
Conteggio Installazioni | 839 |
Versione Corrente | 0.0.2.1 |
Ultimo Aggiornamento | 2022-01-07 |
Data di Pubblicazione | 2020-09-30 |
Valutazione | 5.00/5 Totale 20 Valutazioni |
Sviluppatore | ivocass |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ivocass/instagram-redesigned |
URL della Pagina di Aiuto | https://github.com/ivocass/instagram-redesigned/issues |
Lingue Supportate | 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 } |