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.”。
擴展截圖
下載Twitter View Original Images擴展crx文件
下載Twitter View Original Images擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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.                     擴展基本資訊
| 名稱 |   |  
| ID | bkpaljhmpehdbjkoahohlhkhlleaicel | 
| 官方網址 | 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"
            ]
        }
    ]
}  |  |