2 cool 4 you
Find Instagram users who do not follow you back.
什么是2 cool 4 you?
2 cool 4 you是由the_real_uncleben开发的Chrome扩展程序,该扩展的主要功能是“Find Instagram users who do not follow you back.”。
扩展截图
下载2 cool 4 you扩展crx文件
下载2 cool 4 you扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Open Instagram in a new tab and push the broken heart button 💔 to find users who do not follow you back.
IMPORTANT NOTICE: Install the extension and open Instagram in a new tab afterwards.
The extension will not work for Instagram tabs opened before installation.
★ Can handle up to ~10k followers.
★ Disclosure of Instagram credentials not required.
★ Minimal extension permissions needed.
★ Open Source.
Permissions:
- storage: Caching the list of users.
Contributions are highly welcome!
https://github.com/yungfred/2-cool-4-you 扩展基本信息
| 名称 | |
| ID | jjjcmnhhhhoemaehhbhipcoammldhjip |
| 官方URL | https://chromewebstore.google.com/detail/2-cool-4-you/jjjcmnhhhhoemaehhbhipcoammldhjip |
| 简介 | Find Instagram users who do not follow you back. |
| 文件大小 | 317 KB |
| 安装次数 | 400 |
| 当前版本 | 1.1.3 |
| 更新时间 | 2023-11-07 |
| 上架时间 | 2020-02-14 |
| 评分 | 4.38/5 共8次评分 |
| 开发者 | the_real_uncleben |
| 电子邮箱 | [email protected] |
| 付费类型 | in_app |
| 扩展官网 | https://github.com/yungfred/2-cool-4-you |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "2 cool 4 you",
"description": "Find Instagram users who do not follow you back.",
"version": "1.1.3",
"background": {
"service_worker": "bg.js"
},
"action": {
"default_title": "Find em!",
"default_icon": ".\/img\/icon_128.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.instagram.com\/*",
"https:\/\/www.instagram.com\/*"
],
"js": [
"cs.js"
]
},
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"js-libs\/ExtPay.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"http:\/\/www.instagram.com\/*",
"https:\/\/www.instagram.com\/*",
"http:\/\/*.cdninstagram.com\/*",
"https:\/\/*.cdninstagram.com\/*",
"http:\/\/*.fbcdn.net\/*",
"https:\/\/*.fbcdn.net\/*"
],
"icons": {
"16": ".\/img\/icon_16.png",
"48": ".\/img\/icon_48.png",
"128": ".\/img\/icon_128.png"
}
} | |