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 擴展基本資訊
| 名稱 | |
| ID | lgainibigpieikbapnhjkikfpapilcjb |
| 官方網址 | 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"
]
}
]
} | |