Just Invite
Just Invite helps you to invite your friends for your group or like your page.
什么是Just Invite?
Just Invite是由https://justinvite.io开发的Chrome扩展程序,该扩展的主要功能是“Just Invite helps you to invite your friends for your group or like your page.”。
扩展截图
下载Just Invite扩展crx文件
下载Just Invite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Don't waste your time by clicking one by one buttons to send invites to your friends to like your page or join your group. Because this tool is going to make your life easier, by making this process automated.
扩展基本信息
名称 | Just Invite |
ID | fbbfknbppfafoghnhpbnpmeikedkjkjg |
官方URL | https://chromewebstore.google.com/detail/just-invite/fbbfknbppfafoghnhpbnpmeikedkjkjg |
简介 | Just Invite helps you to invite your friends for your group or like your page. |
文件大小 | 1.59 MB |
安装次数 | 606 |
当前版本 | 1.00.25 |
更新时间 | 2023-12-27 |
上架时间 | 2022-05-19 |
评分 | 5.00/5 共4次评分 |
开发者 | https://justinvite.io |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.justinvite.io |
隐私政策页面URL | https://tier5.us/chrome_extension |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Just Invite", "description": "Just Invite helps you to invite your friends for your group or like your page.", "version": "1.00.25", "icons": { "16": "images\/1650516856078-smallLogo.png", "48": "images\/1650516856141-mediumLogo.png", "128": "images\/1650516856221-largeLogo.png" }, "action": { "default_title": "Just Invite", "default_popup": "dashboard.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*" ], "js": [ "lib\/jquery-3.5.1.min.js", "lib\/toastr.min.js", "lib\/moment.min.js", "js\/config.bundle.js", "js\/fb_invite_automation.bundle.js" ], "run_at": "document_end", "css": [ "css\/invite_inj.css", "css\/toastr.min.css" ] } ], "background": { "service_worker": "js\/background.bundle.js" }, "permissions": [ "alarms", "storage", "webRequest", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*", "*:\/\/*.kyubi.io\/api\/*", "*:\/\/*.justinvite.io\/*" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "rules.json" } ] }, "web_accessible_resources": [ { "resources": [ "images\/*.png", "images\/*.svg", "images\/*.gif" ], "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'", "content_scripts": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'" }, "short_name": "JI" } |