Social Search Plus
This extension allows you to search on all social platforms in one click!
Social Search Plus là gì?
Social Search Plus là một tiện ích mở rộng Chrome được phát triển bởi https://socialsearchplus.com, và tính năng chính của nó là "This extension allows you to search on all social platforms in one click!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Social Search Plus
Tải xuống các tệp mở rộng Social Search Plus dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Type in your search in google and have the option to search your query on different socials all from the google search page.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Social Search Plus |
ID | gkjijpllljghgoahellmkbpallaklfcc |
URL Chính Thức | https://chromewebstore.google.com/detail/social-search-plus/gkjijpllljghgoahellmkbpallaklfcc |
Mô tả | This extension allows you to search on all social platforms in one click! |
Kích Thước Tệp | 98.74 KB |
Số Lần Cài Đặt | 93 |
Phiên Bản Hiện Tại | 2.5 |
Cập Nhật Lần Cuối | 2023-09-28 |
Ngày Phát Hành | 2023-09-06 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://socialsearchplus.com |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |