IG+VSCO fullsize
Click extension icon to open current IG or VSCO image in the highest resolution possible
什麼是IG+VSCO fullsize?
IG+VSCO fullsize是由Ondkloss開發的Chrome擴展程式,該擴展的主要功能是“Click extension icon to open current IG or VSCO image in the highest resolution possible”。
擴展截圖
下載IG+VSCO fullsize擴展crx文件
下載IG+VSCO fullsize擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Works for:
* IG image and profile image
* VSCO image and profile image
* TikTok image and profile image
Open source: https://github.com/Ondkloss/ig-vsco-fullsize 擴展基本資訊
| 名稱 | |
| ID | ngdfnokoifnihnknoibnbhfhnkmlfocb |
| 官方網址 | https://chromewebstore.google.com/detail/ig+vsco-fullsize/ngdfnokoifnihnknoibnbhfhnkmlfocb |
| 簡介 | Click extension icon to open current IG or VSCO image in the highest resolution possible |
| 檔案大小 | 14.11 KB |
| 安裝次數 | 1,878 |
| 目前版本 | 1.3.3 |
| 更新時間 | 2020-11-19 |
| 上架時間 | 2020-06-22 |
| 評分 | 3.30/5 共 10 次評分 |
| 開發者 | Ondkloss |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/Ondkloss/ig-vsco-fullsize |
| 說明頁面URL | https://github.com/Ondkloss/ig-vsco-fullsize |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"version": "1.3.3",
"manifest_version": 2,
"default_locale": "en",
"permissions": [
"activeTab",
"webRequest",
"webRequestBlocking",
"https:\/\/i.instagram.com\/api\/v1\/users\/*",
"https:\/\/www.instagram.com\/*",
"https:\/\/vsco.co\/*",
"https:\/\/www.tiktok.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/vsco.co\/*"
],
"js": [
"content_vsco.js"
]
},
{
"matches": [
"https:\/\/www.instagram.com\/*"
],
"js": [
"content_ig.js"
],
"css": [
"content_ig.css"
]
},
{
"matches": [
"https:\/\/www.tiktok.com\/*"
],
"js": [
"content_tiktok.js"
]
}
],
"browser_action": [],
"icons": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"128": "images\/logo128.png"
}
} | |