Twitter View Original Images

Open images in original size on Twitter.

Twitter View Original Images란 무엇입니까?

Twitter View Original Images은(는) https://memo.furyutei.work에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open images in original size on Twitter."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Twitter View Original Images 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds 'Original' buttons to open images in original size on Twitter (https://twitter.com/*) or on TweetDeck (https://tweetdeck.twitter.com/).
When there are multiple images, they are displayed on a single tab.

Also, from context menu, you can download an image in original size.                    

확장 프로그램 기본 정보

이름 Twitter View Original Images Twitter View Original Images
ID bkpaljhmpehdbjkoahohlhkhlleaicel
공식 URL https://chrome.google.com/webstore/detail/bkpaljhmpehdbjkoahohlhkhlleaicel
설명 Open images in original size on Twitter.
파일 크기 156 KB
설치 횟수 36,821
현재 버전 0.1.15.0
최근 업데이트 2023-08-12
출시 날짜 2020-05-09
평점 4.55/5 총 175 개의 평점
개발자 https://memo.furyutei.work
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://memo.furyutei.work/entry/20160116/1452871567
도움말 페이지 URL https://github.com/furyutei/twOpenOriginalImage/issues
지원되는 언어 en,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_ext_title__",
    "short_name": "__MSG_ext_short_name__",
    "version": "0.1.15.0",
    "description": "__MSG_ext_description__",
    "author": "furyu",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "96": "img\/icon_96.png",
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/pbs.twimg.com\/media\/*",
                "*:\/\/tweetdeck.twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "js\/jszip.min.js",
                "js\/FileSaver.min.js",
                "js\/inject_script.js",
                "js\/tweet_api.js",
                "js\/init.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/pbs.twimg.com\/media\/*",
                "*:\/\/tweetdeck.twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "js\/twOpenOriginalImage.user.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads",
        "storage"
    ],
    "background": {
        "service_worker": "background-wrapper.js"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": "img\/icon_48.png",
        "default_title": "__MSG_ext_title__",
        "default_popup": "html\/options.html"
    },
    "host_permissions": [
        "*:\/\/*.twimg.com\/*",
        "*:\/\/*.twitter.com\/*"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "resources": [
                "js\/*.js"
            ]
        }
    ]
}