Twitter View Original Images

Open images in original size on Twitter.

Twitter View Original Imagesคืออะไร?

Twitter View Original Images เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://memo.furyutei.work และคุณลักษณะหลักของมันคือ "Open images in original size on Twitter."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter View Original Images

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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"
            ]
        }
    ]
}