Social Search Plus
This extension allows you to search on all social platforms in one click!
什么是Social Search Plus?
Social Search Plus是由https://socialsearchplus.com开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to search on all social platforms in one click!”。
扩展截图
下载Social Search Plus扩展crx文件
下载Social Search Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Type in your search in google and have the option to search your query on different socials all from the google search page.
扩展基本信息
名称 | Social Search Plus |
ID | gkjijpllljghgoahellmkbpallaklfcc |
官方URL | https://chromewebstore.google.com/detail/social-search-plus/gkjijpllljghgoahellmkbpallaklfcc |
简介 | This extension allows you to search on all social platforms in one click! |
文件大小 | 98.74 KB |
安装次数 | 93 |
当前版本 | 2.5 |
更新时间 | 2023-09-28 |
上架时间 | 2023-09-06 |
评分 | 3.00/5 共2次评分 |
开发者 | https://socialsearchplus.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Social Search Plus", "description": "This extension allows you to search on all social platforms in one click!", "version": "2.5", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "action": { "default_icon": "images\/SSP1-logo.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "host_permissions": [ "https:\/\/www.google.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "styles.css", "images\/*.png" ], "matches": [ "https:\/\/www.google.com\/*" ] } ] } |