New Tab Start Page

Customize New Tabs & More!

New Tab Start Pageとは何ですか?

New Tab Start Pageはhttps://www.sermak.caによって開発されたChromeの拡張機能で、その主な機能は「Customize New Tabs & More!」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

New Tab Start Page拡張機能のCRXファイルをダウンロード

New Tab Start Page拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A multi purpose Chrome extension that does all this & more:

- Set your Custom "Home Page" under Options, in this extension.
- Open that Custom Page in "New Tab" instead of the Home Page.
- Automatically force YouTube videos to play at high definition.
- Right click on an Image to perform a Reverse Image search.
- Right click after selecting a plain text URL to open as link.
- Double click on a plain text link to open URL in a new tab.
- Click icon (next to Menu) for a Cached version or Translation.
- Select some Website text, click Ctrl+Alt (Opt) for Translation.
- Privacy protection disables referral pings on Google Search.
- Ability to change/spoof the browser 'User Agent' when needed.
- Right-Click while holding Ctrl+Alt to remove a page element.
- History Navigation: Hold Right Mouse button, swipe left/right.
- Customize where new tabs open, and tab order when they close.
- Basic cookie management allows for export, import and wipes.

Security permissions that should be enabled for all the features:

"Allow access to file URLs" is required if opening local files as new tabs.
"Allow in private mode" has to be checked in order to work in incognito.
"Allow access to search pages" needed for search engine result pages.

Supports Chrome, Opera, Vivaldi, and Edge (Chromium) browsers.                    

拡張機能の基本情報

名前 New Tab Start Page New Tab Start Page
ID mjfahldkpjhcnfbbmdhpjolcjpcfhcpj
公式URL https://chromewebstore.google.com/detail/new-tab-start-page/mjfahldkpjhcnfbbmdhpjolcjpcfhcpj
説明 Customize New Tabs & More!
ファイルサイズ 115 KB
インストール数 3,097
現在のバージョン 31.1
最終更新日 2023-12-27
公開日 2020-06-02
評価 4.40/5 合計 77 レビュー
開発者 https://www.sermak.ca
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://www.sermak.ca/
プライバシーポリシーページのURL https://www.sermak.ca/Privacy.pdf
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "NTSP"
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content-id.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "all_frames": true,
            "js": [
                "content-st.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Customize New Tabs & More!",
    "homepage_url": "https:\/\/sermak.ca",
    "icons": {
        "128": "newtab.png"
    },
    "incognito": "split",
    "manifest_version": 2,
    "name": "New Tab Start Page",
    "options_page": "options.html",
    "permissions": [
        "cookies",
        "webRequest",
        "webRequestBlocking",
        "tabs",
        "contextMenus",
        "clipboardWrite",
        "clipboardRead",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "short_name": "NTSP",
    "version": "31.1",
    "web_accessible_resources": [
        "*.html",
        "*.svg"
    ]
}