Social Search Plus
This extension allows you to search on all social platforms in one click!
ما هو Social Search Plus؟
Social Search Plus هو إضافة Chrome تم تطويرها بواسطة https://socialsearchplus.com، والميزة الرئيسية لها هي "This extension allows you to search on all social platforms in one click!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Social Search Plus
قم بتنزيل ملفات الامتداد Social Search Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } ] } |