Online Safety

Adding badgers next to each organic result in the search feed for you to check the website safety without the hassle.

Co je Online Safety?

Online Safety je rozšíření Chrome vyvinuté https://onlinesafetyapp.net, a jeho hlavní funkcí je „Adding badgers next to each organic result in the search feed for you to check the website safety without the hassle.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Online Safety

Stáhněte si soubory rozšíření Online Safety ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Your search feed might be a dangerous jungle with many suspicious or even malicious results disguised as totally legitimate content sites. Before you click on each organic result and be redirected to an unknown site, our extension provides you the opportunity to preview the safety status of the website based on WOT’s reputation score. Without the need to go visit another site to double-check the website URL, now a simple click on the safety badger next to the result in the feed will give you a better understanding of how safe/unsafe the destination likely is.

Disclaimer: We integrated the reputation score of WOT in order to provide the status of the website URL in the feed and we are not responsible for any miscategorization. 

Please note that the extension only adds badgers next to organic results in your feed. We do not add the badger next to ads. You cannot check the status/safety level of the ads page.

Permissions required and reasons:

1. Access to “contextMenus”. We require this permission to add items to the drop-down menu of the extension’s icon in order to provide a better user experience. 
2. Access to “declarativeNetRequest”. This permission allows us to redirect your search to our domain onlinesafetysearch.net, powered by Yahoo. We need to use our search domain to detect which domain you are planning to access and verify with the third-party API to receive the safety score.
3. Access to "". we require this permission to check the default search engine of the user.
4.Access to "storage". We require this permission to save your settings within the extension.

How to uninstall?

If you want to uninstall our extension, go to “Settings” on Chrome, and find our extension in the “Extensions” tab. Click “remove”. Alternatively, you can right-click on the extension’s icon on your browser and select “Uninstall” from the drop-down menu.

Chrome™ is a trademark of Google LLC. The use of it does not imply any affiliation to or endorsement by Google LLC.

If you have more questions about our extension, welcome to find your answer below:

Privacy Policy: https://www.onlinesafetyapp.net/privacy 

End-User Licence Agreement: https://www.onlinesafetyapp.net/terms 

FAQ: https://www.onlinesafetyapp.net/#faq 

Contact: https://www.onlinesafetyapp.net/contact 

Uninstall: https://www.onlinesafetyapp.net/uninstall                    

Základní Informace o Rozšíření

Název Online Safety Online Safety
ID lbdlknihlgllpldokklknppigajnldie
Oficiální URL https://chromewebstore.google.com/detail/online-safety/lbdlknihlgllpldokklknppigajnldie
Popis Adding badgers next to each organic result in the search feed for you to check the website safety without the hassle.
Velikost souboru 758 KB
Počet instalací 34,693
Aktuální Verze 3.0.4
Poslední Aktualizace 2022-03-03
Datum Vydání 2020-12-24
Hodnocení 4.61/5 Celkem 23 Hodnocení
Vývojář https://onlinesafetyapp.net
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.onlinesafetyapp.net/
URL Stránky Nápovědy https://www.onlinesafetyapp.net/contact/
URL Stránky Zásad Ochrany Soukromí https://www.onlinesafetyapp.net/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Online Safety",
    "version": "3.0.4",
    "chrome_settings_overrides": {
        "search_provider": {
            "encoding": "UTF-8",
            "favicon_url": "https:\/\/www.onlinesafetysearch.net\/favicon.ico",
            "is_default": true,
            "name": "Online Safety",
            "keyword": "Online Safety",
            "search_url": "https:\/\/www.onlinesafetysearch.net\/search\/?category=web&s=sdpr&vert=private&q={searchTerms}",
            "suggest_url": "https:\/\/sug.onlinesafetysearch.net\/v1\/sug\/?yid=sdpr&vert=private&q={searchTerms}"
        }
    },
    "homepage_url": "https:\/\/www.onlinesafetysearch.net\/wim\/gotohub?s=sdpr",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.onlinesafetysearch.net\/*"
            ],
            "js": [
                "content_script\/install.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.yahoo.com\/*"
            ],
            "css": [
                "content_script\/reputation\/style.css"
            ],
            "js": [
                "src\/jquery\/jquery-3.5.1.min.js",
                "content_script\/reputation\/files.js",
                "content_script\/reputation\/reputation.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "bg\/background.js",
        "type": "module"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "enabled": true,
                "path": "src\/rules.json"
            }
        ]
    },
    "action": {
        "default_title": "Online Safety",
        "default_icon": "img\/icon16.png",
        "default_popup": "popup\/popup.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "description": "Adding badgers next to each organic result in the search feed for you to check the website safety without the hassle.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "incognito": "spanning",
    "manifest_version": 3,
    "host_permissions": [
        ""
    ],
    "permissions": [
        "contextMenus",
        "declarativeNetRequest",
        "webNavigation",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*",
                "src\/fonts\/*",
                "content_script\/*"
            ],
            "matches": [
                "*:\/\/*.yahoo.com\/*",
                "*:\/\/*.onlinesafetyapp.net\/*"
            ],
            "extension_ids": []
        }
    ]
}