Profile Search for Instagram (Unofficial)
Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.
什么是Profile Search for Instagram (Unofficial)?
Profile Search for Instagram (Unofficial)是由http://jowo.co开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.”。
扩展截图
下载Profile Search for Instagram (Unofficial)扩展crx文件
下载Profile Search for Instagram (Unofficial)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | |
ID | ohbdjjgonipbnlgfleogigljggmoogap |
官方URL | https://chrome.google.com/webstore/detail/profile-search-for-instag/ohbdjjgonipbnlgfleogigljggmoogap |
简介 | Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile. |
文件大小 | 26.26 KB |
安装次数 | 501 |
当前版本 | 1.5 |
更新时间 | 2022-02-05 |
上架时间 | 2020-08-17 |
评分 | 5.00/5 共10次评分 |
开发者 | http://jowo.co |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://jowo.co |
帮助页面URL | https://jowo.co/apps/forms/support/index.html |
隐私政策页面URL | https://jowo.co/apps/privacypolicyterms/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Profile Search for Instagram (Unofficial)", "description": "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.", "version": "1.5", "icons": { "128": "images\/icons\/icon128.png", "48": "images\/icons\/icon48.png", "16": "images\/icons\/icon16.png" }, "browser_action": { "default_icon": "images\/icons\/icon16.png", "default_popup": "html\/popup.html" }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": true }, "web_accessible_resources": [ "content.js", "content.css" ], "content_scripts": [ { "matches": [ "https:\/\/*.instagram.com\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/content.css" ], "all_frames": true } ], "options_page": "html\/options.html", "permissions": [ "storage", "contextMenus", "https:\/\/*.instagram.com\/*" ] } |