Is Web Translator safe?

Medium risk

Web Translator overrides the browser's default search engine and new tab page to route all searches through search.web-translater-tab.com.

On installation, the extension sets search.web-translater-tab.com as the default search provider via chrome_settings_overrides, redirecting every address-bar query to that domain. It also replaces the new tab page with a custom page containing a search form that submits queries directly to the same third-party domain. No disclosure of this routing is presented to the user.

Syndic8v1.0.0Chrome Web Store
45Risk

AI-generated. Findings may contain errors. Those marked Verified have been manually reviewed.

Publishers can request a review.

Findings

SeverityMEDIUM
ClassUNWANTED
TypeUnexpected
CWECWE-506
SourceAI SANDBOX

Address-bar searches route to Web Translator

When Web Translator is installed, Chrome applies the extension's default-search override.

Searches typed into the address bar are routed to search.web-translater-tab.com, placing the search terms in the request URL sent to that domain.

01EvidenceCAUSE EFFECT
What actually happens
You did this

You install Web Translator.

The extension did this

Chrome routes address-bar searches to the extension's configured search domain.

The request includes the words you typed as the search query.

02EvidenceFIELD TABLE
Fields sent by the default search provider override
FieldValueWhy it matters
Search terms
weather tomorrow (illustrative)The words you type into Chrome's address bar are sent as the query.
Search request URL
https://search.web-translater-tab.com/search?q=weather%20tomorrow (illustrative)The destination URL shows which service receives the address-bar search.
03EvidenceNETWORK CAPTURE
Captured request
GEThttps://search.web-translater-tab.com/search?q={searchTerms}
04EvidenceCODE COMPARE
The code that does this

The shipped manifest sets Web Translator as the default search provider

What it actually does
Readable equivalent of the search overridemanifest.json
"chrome_settings_overrides": {
    "search_provider": {
        "encoding": "UTF-8",
        "favicon_url": "https://web-translater-tab.com/wp-content/uploads/2021/10/icon-128.png",
        "is_default": true,
        "keyword": "Keyword",
        "name": "Web Translator",
        "search_url": "https://search.web-translater-tab.com/search?q={searchTerms}"
    }
}
05EvidenceTHIRD PARTY LIST
External search destination
  • search.web-translater-tab.com

    Receives Chrome address-bar search requests configured by the extension's default search provider override.

SeverityMEDIUM
ClassUNWANTED
TypeUnexpected
CWECWE-200
SourceAI SANDBOX

New-tab searches submit to Web Translator

When you use the search box on Web Translator's new tab page, the extension submits the text to search.web-translater-tab.com.

The form uses GET, so the search query is placed in the request URL rather than a request body.

01EvidenceCAUSE EFFECT
What actually happens
You did this

You submit a search from the extension's new-tab page.

The extension did this

The page sends the search text to search.web-translater-tab.com as a GET request.

Because the form uses GET, the query appears in the request URL.

02EvidenceFIELD TABLE
Fields sent by the new-tab search form
FieldValueWhy it matters
Search text
weather tomorrow (illustrative)The words you enter in the new-tab search box are sent as the query.
Request URL
https://search.web-translater-tab.com/search?q=weather+tomorrow (illustrative)The query is visible in the URL sent to the search service.
03EvidenceNETWORK CAPTURE
Captured request
GEThttps://search.web-translater-tab.com/search
04EvidenceCODE COMPARE
The code that does this

The new-tab page's form submits searches to the Web Translator search host

What it actually does
Readable new-tab overridemanifest.json
"chrome_url_overrides": {
    "newtab": "options.html"
}
Readable search formoptions.html
<form method="get" action="https://search.web-translater-tab.com/search">
    <div class="form-group">
        <label for="text">Enter Text:</label>
        <textarea class="form-control" rows="5" name="q" id="text"></textarea>
    </div>
    <div class="row">
        <div class="col-md-12 text-center">
            <button type="button" class="btn btn-primary mb-5 theme-btn mr-1" id="translator_btn">Translate</button>
            <button type="submit" class="btn btn-primary mb-5 theme-btn ml-1" id="search_btn">Search</button>
        </div>
        <div class="col-md-12">
            <p id="error" class="text-danger"></p>
        </div>
    </div>

</form>
05EvidenceTHIRD PARTY LIST
External search destination
  • search.web-translater-tab.com

    Receives new-tab search form submissions from the extension page.

Data recipients

search.web-translater-tab.com
Updated 17 September 2026elamodccgcmdfkhnbfipinlfcedfpkjd