Instension

Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.

Apa itu Instension?

Instension adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Instension

Unduh file ekstensi Instension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Extension will add two new items in a context menu, "Open in new tab" and "Download". They will work, if context menu is opened on a fullsize post from the official Instagram website.                    

Informasi Dasar Ekstensi

Nama Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
URL Resmi https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
Deskripsi Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
Ukuran File 16.2 KB
Jumlah Instalasi 19
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2020-01-02
Tanggal Publikasi 2020-01-02
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/KrusnikViers/Instension
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instension",
    "version": "1.1.0",
    "description": "Chrome browser extension, that allows to download or open in a separate tab a video\/photo post from the Instagram website.",
    "icons": {
        "16": "icons\/instension_16.png",
        "32": "icons\/instension_32.png",
        "64": "icons\/instension_64.png",
        "128": "icons\/instension_128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "scripts\/element_finder.js",
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "downloads"
    ]
}