Snip: clean the web

Remove any element from any website with just one click

Co to jest Snip: clean the web?

Snip: clean the web to rozszerzenie Chrome opracowane przez https://getsnip.cc, a jego główną funkcją jest „Remove any element from any website with just one click”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Snip: clean the web

Pobierz pliki rozszerzeń Snip: clean the web w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        With Snip you can remove any element from any website with just one click. So it only shows what you want to see.

You choices are saved. So next time when you visit the same page those elements will be gone as well.

With Snip you can undo or redo recent changes. You can also review all removed elements and revert any of them.

If you login with your Google account, your choices will be synced to all your devices using that same account.

Version 2.10 changes:
-Add the feature to snip an area of a web page.

Version 2.9 changes:
-Temporarily remove the login button.

Version 2.6 changes:
-Fixed that some elements cannot be snipped.

Version 2.5 changes:
-Fixed some layout issue

Version 2.4 changes:
-Migration to Manifest V3.

Version 2.3 changes:
-Handle the case when first using Snip and the rules don't exist.

Version 2.2 changes:
- Fix the issue that removed elements will appear for a few seconds when reloading the page.

Version 2.1 changes:
- Improve performance when analyzing the page.                    

Podstawowe informacje o rozszerzeniu

Nazwa Snip: clean the web Snip: clean the web
ID fcnadghcijkmdhjdgiehgfpadojilfoa
Oficjalny URL https://chromewebstore.google.com/detail/snip-clean-the-web/fcnadghcijkmdhjdgiehgfpadojilfoa
Opis Remove any element from any website with just one click
Rozmiar pliku 68.36 KB
Liczba instalacji 1,271
Aktualna Wersja 2.11
Ostatnia Aktualizacja 2024-03-01
Data Publikacji 2021-02-11
Ocena 4.35/5 Łącznie 17 Oceny
Deweloper https://getsnip.cc
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://goodmovies.io/privacy-policy
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snip: clean the web",
    "short_name": "Snip: clean the web",
    "version": "2.11",
    "description": "Remove any element from any website with just one click",
    "permissions": [
        "storage",
        "contextMenus",
        "identity",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "commands": {
        "snip-it": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "Snip an element"
        },
        "toggle-snipping": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Start\/End snipping"
        },
        "reset-snipping": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Reset snipping"
        },
        "remove-it": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Remove elements"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "start.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "lib\/content.js",
                "snip.js"
            ],
            "css": [
                "snip.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "24": "images\/24.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmnJJDpj7yV6VbCE+bOnzBm2iW2QkTObu9XS0B2ol951+aGbhO6lL9DewIyD6xZxXDRP5dQSYe3+Busy1tYAmgPEnsTVEgOf3ejG1qST\/9ef+rz0wLOfQimNYkYKXg65hsfgnbojRqaNg6ltFHyz\/STk9LawZgZxOKZF6vjGknDXMp6iYTuKH3fecSvPN133XrRMrh4jH2B0ZWTcUPWlVIehYvJP5jqJnmOweqNoacUz4\/5PmxCb1nK20OF+SQLMwUReBxJ35AVB7w1wsCyPdJtNAicNgHOaxwY3yzd82YdnzrtYU0dp+clKwBxByzRcZUZ2NHltYfHMEjQldEQB7XwIDAQAB",
    "oauth2": {
        "client_id": "845383099804-3k6eha05b65bj0bnpjfaeg0c4ofltgun.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.goodmovies.io\/*"
        ]
    },
    "manifest_version": 3
}