Social Search Plus
This extension allows you to search on all social platforms in one click!
Hvad er Social Search Plus?
Social Search Plus er en Chrome-udvidelse udviklet af https://socialsearchplus.com, og dens hovedfunktion er "This extension allows you to search on all social platforms in one click!".
Udvidelsesskærmbilleder
Download Social Search Plus-udvidelses-CRX-fil
Download Social Search Plus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Type in your search in google and have the option to search your query on different socials all from the google search page.
Grundlæggende oplysninger om udvidelsen
Navn | Social Search Plus |
ID | gkjijpllljghgoahellmkbpallaklfcc |
Officiel URL | https://chromewebstore.google.com/detail/social-search-plus/gkjijpllljghgoahellmkbpallaklfcc |
Beskrivelse | This extension allows you to search on all social platforms in one click! |
Filstørrelse | 98.74 KB |
Antal Installationer | 93 |
Nuværende Version | 2.5 |
Senest Opdateret | 2023-09-28 |
Udgivelsesdato | 2023-09-06 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | https://socialsearchplus.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } ] } |