Tweaks for Instagram

View full-size images and videos on Instagram, and download all images in a post with a single click.

Tweaks for Instagramคืออะไร?

Tweaks for Instagram เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://inzk.dev และคุณลักษณะหลักของมันคือ "View full-size images and videos on Instagram, and download all images in a post with a single click."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tweaks for Instagram

ดาวน์โหลดไฟล์ส่วนขยาย Tweaks for Instagram ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        View full-size images and videos (with default browser video player) on Instagram, and download all images in a post with a single click.

Available on Posts, Reels, Tagged, and Explore pages.

------------------------------------------------
Controls
------------------------------------------------

THUMBNAILS

Open full-size media
- Left/Middle/Right Mouse Button (default: Ctrl + LMB)

Download all full-size images in a post
- Left/Middle/Right Mouse Button (default: Shift + LMB)

FULL-SIZE MEDIA VIEWER

Go to the previous/next media item (or post)
- Mouse Wheel

Zoom
- Ctrl + Mouse Wheel
- Right Mouse Button + Mouse Wheel

------------------------------------------------
Permissions
------------------------------------------------

Storage - for storing extension settings
Downloads - for downloading photos

Site Access
- www.instagram.com

------------------------------------------------
Privacy Policy
------------------------------------------------

This extension does not collect personal data from users, and it does not send any user data to a remote server. The only data it collects are extension settings, and this is stored locally on your PC.

This is an independent project and has no relationship to Instagram.                    

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

ชื่อ Tweaks for Instagram Tweaks for Instagram
ID gplahpebapimmnpchkpkkfinhffaecok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tweaks-for-instagram/gplahpebapimmnpchkpkkfinhffaecok
คำอธิบาย View full-size images and videos on Instagram, and download all images in a post with a single click.
ขนาดไฟล์ 484 KB
จำนวนการติดตั้ง 828
เวอร์ชันปัจจุบัน 3.2.1
อัปเดตครั้งล่าสุด 2023-12-21
วันที่เผยแพร่ 2020-06-16
คะแนน 4.57/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา https://inzk.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tweaks for Instagram",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "description": "View full-size images and videos on Instagram, and download all images in a post with a single click.",
    "action": {
        "default_icon": {
            "16": "icon-16.png",
            "19": "icon-19.png",
            "24": "icon-24.png",
            "32": "icon-32.png",
            "38": "icon-38.png",
            "48": "icon-48.png",
            "96": "icon-96.png"
        },
        "default_popup": "popup.html",
        "default_title": "Tweaks for Instagram"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "commands": {
        "_execute_action": {
            "description": "Open Popup"
        }
    },
    "icons": {
        "16": "icon-16.png",
        "19": "icon-19.png",
        "24": "icon-24.png",
        "32": "icon-32.png",
        "38": "icon-38.png",
        "48": "icon-48.png",
        "96": "icon-96.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "downloads",
        "storage"
    ],
    "version": "3.2.1",
    "content_scripts": [
        {
            "js": [
                "content.custom-styles.bundle.js"
            ],
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "content.instagram.bundle.js"
            ],
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}