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. 擴展基本資訊
| 名稱 | |
| ID | gkjijpllljghgoahellmkbpallaklfcc |
| 官方網址 | 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\/*"
]
}
]
} | |