Startpage — Private Search Engine & New Tab
Take back your online privacy by using Startpage as your default search engine.
什麼是Startpage — Private Search Engine & New Tab?
Startpage — Private Search Engine & New Tab是由https://startpage.com開發的Chrome擴展程式,該擴展的主要功能是“Take back your online privacy by using Startpage as your default search engine.”。
擴展截圖
下載Startpage — Private Search Engine & New Tab擴展crx文件
下載Startpage — Private Search Engine & New Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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! 擴展基本資訊
| 名稱 | |
| ID | nfepmeogoknijeenahgdfobjfemdahmo |
| 官方網址 | https://chromewebstore.google.com/detail/startpage-%E2%80%94-private-searc/nfepmeogoknijeenahgdfobjfemdahmo |
| 簡介 | Take back your online privacy by using Startpage as your default search engine. |
| 檔案大小 | 11.76 KB |
| 安裝次數 | 739 |
| 目前版本 | 1.0.2 |
| 更新時間 | 2022-03-29 |
| 上架時間 | 2020-05-28 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | https://startpage.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 說明頁面URL | https://support.startpage.com/ |
| 隱私政策頁面URL | https://www.startpage.com/en/privacy-policy |
| 支援的語言 | 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"
} | |