Instab
Open and save Instagram photos, videos, stories and reels.
什么是Instab?
Instab是由Alan Dours开发的Chrome扩展程序,该扩展的主要功能是“Open and save Instagram photos, videos, stories and reels.”。
扩展截图
下载Instab扩展crx文件
下载Instab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Open, save and backup your Instagram posts, stories and reels
扩展基本信息
名称 | Instab |
ID | lgainibigpieikbapnhjkikfpapilcjb |
官方URL | https://chromewebstore.google.com/detail/instab/lgainibigpieikbapnhjkikfpapilcjb |
简介 | Open and save Instagram photos, videos, stories and reels. |
文件大小 | 17.24 KB |
安装次数 | 8,766 |
当前版本 | 1.7.1 |
更新时间 | 2022-06-11 |
上架时间 | 2019-07-19 |
评分 | 3.91/5 共22次评分 |
开发者 | Alan Dours |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/alandours/instab |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instab", "description": "Open and save Instagram photos, videos, stories and reels.", "version": "1.7.1", "permissions": [ "downloads", "storage" ], "icons": { "16": "icons\/ig-16.png", "32": "icons\/ig-32.png", "48": "icons\/ig-48.png" }, "browser_action": { "default_icon": "icons\/ig-48.png", "default_title": "Instab settings", "default_popup": "html\/settings.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.instagram.com\/*" ], "js": [ "js\/main.js" ], "css": [ "css\/instab.css" ] }, { "matches": [ "*:\/\/*.instagram.com\/p\/*", "*:\/\/*.instagram.com\/*?instab=true", "*:\/\/*.instagram.com\/*&instab=true" ], "js": [ "js\/post.js" ] }, { "matches": [ "*:\/\/*.instagram.com\/*" ], "exclude_globs": [ "*instagram.com\/p\/*" ], "js": [ "js\/feed.js" ] }, { "run_at": "document_start", "matches": [ "*:\/\/*.instagram.com\/*?instab=true", "*:\/\/*.instagram.com\/*&instab=true" ], "js": [ "js\/userAgent.js" ], "css": [ "css\/videoTab.css" ] } ] } |