Instension

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

什么是Instension?

Instension是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.”。

扩展截图

screenshot

下载Instension扩展crx文件

下载Instension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Instension Instension
ID ghhgaaedjagldepccfmopmnkkkpjkeon
官方URL https://chromewebstore.google.com/detail/instension/ghhgaaedjagldepccfmopmnkkkpjkeon
简介 Chrome browser extension, that allows to download or open in a separate tab a video/photo post from the Instagram website.
文件大小 16.2 KB
安装次数 19
当前版本 1.1.0
更新时间 2020-01-02
上架时间 2020-01-02
评分 5.00/5 共1次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/KrusnikViers/Instension
支持的语言 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"
    ]
}