Slide - A Lead Tracker for Instagram
Integrates directly with Instagram for easy lead tracking
什么是Slide - A Lead Tracker for Instagram?
Slide - A Lead Tracker for Instagram是由http://slideapp.io开发的Chrome扩展程序,该扩展的主要功能是“Integrates directly with Instagram for easy lead tracking”。
扩展截图
下载Slide - A Lead Tracker for Instagram扩展crx文件
下载Slide - A Lead Tracker for Instagram扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | aklbkkpgnaniehcapdhdodeimgbdiglf |
| 官方URL | https://chrome.google.com/webstore/detail/slide-a-lead-tracker-for/aklbkkpgnaniehcapdhdodeimgbdiglf |
| 简介 | Integrates directly with Instagram for easy lead tracking |
| 文件大小 | 1.75 MB |
| 安装次数 | 14 |
| 当前版本 | 0.0.5 |
| 更新时间 | 2021-04-19 |
| 上架时间 | 2021-04-08 |
| 开发者 | http://slideapp.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://www.slideapp.io |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"short_name": "Slide",
"name": "Slide - A Lead Tracker for Instagram",
"description": "Integrates directly with Instagram for easy lead tracking",
"version": "0.0.5",
"manifest_version": 2,
"permissions": [
"storage",
"webRequest",
"https:\/\/*.instagram.com\/*",
"http:\/\/*.instagram.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_popup": "extension\/build\/index.html",
"default_icon": []
},
"content_scripts": [
{
"matches": [
"*:\/\/*.instagram.com\/*"
],
"js": [
"index.js"
],
"css": [
"normalize.css"
]
}
],
"icons": {
"16": "img\/logo_16.png",
"48": "img\/logo_48.png",
"128": "img\/logo_128.png"
},
"web_accessible_resources": [
"img\/*"
],
"content_security_policy": "script-src 'self' 'sha256-fdAfMKZtCTRPKMRznGwonJHC++vCCrQS7XFnVrzSXAE=' 'sha256-YD8w9VLrdvqI5\/tFVmpT+1337ly+e\/JvPrkRxYZo\/w4='; object-src 'self';"
} | |