insta-d
adds a download link to instagram pages
什麼是insta-d?
insta-d是由moldy530開發的Chrome擴展程式,該擴展的主要功能是“adds a download link to instagram pages”。
擴展截圖
下載insta-d擴展crx文件
下載insta-d擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Simple extension that allows you to download instagram images as you browse them. Just click on an image to open up its modal on someone's feed and click the download icon next to the share icon and it will download the highest quality available.
擴展基本資訊
名稱 | |
ID | bbofjkmnliejmigcepfilhpigbpnghdg |
官方網址 | https://chrome.google.com/webstore/detail/insta-d/bbofjkmnliejmigcepfilhpigbpnghdg |
簡介 | adds a download link to instagram pages |
檔案大小 | 25.93 KB |
安裝次數 | 120 |
目前版本 | 1.0.2 |
更新時間 | 2019-01-30 |
上架時間 | 2019-01-30 |
評分 | 3.00/5 共 2 次評分 |
開發者 | moldy530 |
付費類型 | free |
擴展官網 | https://www.github.com/moldy530/insta-d |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "insta-d", "description": "adds a download link to instagram pages", "version": "1.0.2", "permissions": [ "activeTab" ], "web_accessible_resources": [ "images\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "script.js" ] } ], "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "64": "images\/icon_64.png" }, "default_title": "insta-d" }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" } } |