Page Tool

Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data

Was ist Page Tool?

Page Tool ist eine Chrome-Erweiterung, die von searchpuzzle38 entwickelt wurde, und ihr Hauptmerkmal ist "Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Page Tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Page Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        * Block specific URLs - via simple URL snippets, eg. 
          - lens.org
          - espacenet
* Show page links e.g. scripts, images. 
* Cookies tool: delete, edit, and keep specific cookies.
          List can be filtered to only show 1 cookie from each domain.
* Delete browsing data e.g. cache, history etc.                    

Grundlegende Informationen zur Erweiterung

Name Page Tool Page Tool
ID bbombkgmpnekkibkifclmcpfagelcopl
Offizielle URL https://chromewebstore.google.com/detail/page-tool/bbombkgmpnekkibkifclmcpfagelcopl
Beschreibung Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data
Dateigröße 405 KB
Installationsanzahl 32
Aktuelle Version 3
Letztes Update 2020-12-07
Veröffentlichungsdatum 2020-01-27
Entwickler searchpuzzle38
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page Tool",
    "version": "3",
    "description": "Block specific URLs; Show page links; Cookie Tool and Delete Browsing Data",
    "permissions": [
        "activeTab",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "cookies",
        "browsingData",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Page Tool",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "inc\/icon16.png",
            "32": "inc\/icon32.png",
            "48": "inc\/icon48.png",
            "64": "inc\/icon64.png",
            "128": "inc\/icon128.png"
        }
    },
    "icons": {
        "16": "inc\/icon16.png",
        "32": "inc\/icon32.png",
        "48": "inc\/icon48.png",
        "64": "inc\/icon64.png",
        "128": "inc\/icon128.png"
    },
    "background": {
        "scripts": [
            "lib.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "lib.js",
                "page.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ]
        }
    ],
    "manifest_version": 2
}