Instagram Redesigned

A new, modern look for Instagram web

Instagram Redesigned란 무엇입니까?

Instagram Redesigned은(는) ivocass에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A new, modern look for Instagram web"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Instagram Redesigned 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Instagram Redesigned Instagram Redesigned
ID edcomepdkpdidhcclphgpgmmbpgogofg
공식 URL https://chrome.google.com/webstore/detail/instagram-redesigned/edcomepdkpdidhcclphgpgmmbpgogofg
설명 A new, modern look for Instagram web
파일 크기 36.81 KB
설치 횟수 839
현재 버전 0.0.2.1
최근 업데이트 2022-01-07
출시 날짜 2020-09-30
평점 5.00/5 총 20 개의 평점
개발자 ivocass
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ivocass/instagram-redesigned
도움말 페이지 URL https://github.com/ivocass/instagram-redesigned/issues
지원되는 언어 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
}