Startpage — Private Search Engine & New Tab
Take back your online privacy by using Startpage as your default search engine.
Cos'è Startpage — Private Search Engine & New Tab?
Startpage — Private Search Engine & New Tab è un'estensione di Chrome sviluppata da https://startpage.com, e la sua funzione principale è "Take back your online privacy by using Startpage as your default search engine.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Startpage — Private Search Engine & New Tab
Scarica i file di estensione Startpage — Private Search Engine & New Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Our new tab extension sets Startpage.com as your default search engine and your new tab to the Startpage.com homepage.
Privacy Policy: https://www.startpage.com/en/privacy-policy
Contact: [email protected]
Please let us know about your experience using our new tab feature. Contact us by email ([email protected]) or leave a review! Informazioni di Base sull'Estensione
| Nome | |
| ID | nfepmeogoknijeenahgdfobjfemdahmo |
| URL Ufficiale | https://chromewebstore.google.com/detail/startpage-%E2%80%94-private-searc/nfepmeogoknijeenahgdfobjfemdahmo |
| Descrizione | Take back your online privacy by using Startpage as your default search engine. |
| Dimensione del File | 11.76 KB |
| Conteggio Installazioni | 739 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2022-03-29 |
| Data di Pubblicazione | 2020-05-28 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | https://startpage.com |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://support.startpage.com/ |
| URL della Pagina della Politica sulla Privacy | https://www.startpage.com/en/privacy-policy |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.0.2",
"icons": {
"16": "icons\/sp_icon_16.png",
"48": "icons\/sp_icon_48.png",
"128": "icons\/sp_icon_128.png"
},
"minimum_chrome_version": "56",
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"https:\/\/*.startpage.com\/*"
],
"chrome_settings_overrides": {
"search_provider": {
"name": "__MSG_searchEngineName__",
"keyword": "startpage.com",
"search_url": "https:\/\/www.startpage.com\/do\/dsearch?query={searchTerms}&cat=web&pl=ext-chrome&language=__MSG_extensionUrlLanguage__&extVersion=1.0.2",
"favicon_url": "https:\/\/www.startpage.com\/favicon.ico",
"encoding": "UTF-8",
"is_default": true
}
},
"chrome_url_overrides": {
"newtab": "newtab\/index.html"
},
"browser_action": {
"default_icon": {
"16": "icons\/sp_icon_16.png",
"48": "icons\/sp_icon_48.png",
"128": "icons\/sp_icon_128.png"
},
"default_title": "__MSG_extensionName__"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/*.startpage.com\/*"
],
"js": [
"js\/content.js"
],
"css": [
"css\/content.css"
],
"run_at": "document_end"
}
],
"default_locale": "en"
} | |