Trace

Find articles you've read in the past

Was ist Trace?

Trace ist eine Chrome-Erweiterung, die von http://trace.tools entwickelt wurde, und ihr Hauptmerkmal ist "Find articles you've read in the past".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Trace-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trace-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

                        Features:
🧐 Instantly find articles, essays, and blogs that you've read in the past
🔎 Search by title, publisher, or any words you can remember
📈 Track what you read with detailed analytics                    

Grundlegende Informationen zur Erweiterung

Name Trace Trace
ID jamgeanaigaadcepnhmdaglegnjfmhkh
Offizielle URL https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh
Beschreibung Find articles you've read in the past
Dateigröße 4.39 MB
Installationsanzahl 23
Aktuelle Version 0.0.1
Letztes Update 2020-05-06
Veröffentlichungsdatum 2020-05-04
Entwickler http://trace.tools
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://trace.tools/login
URL der Datenschutzrichtlinien-Seite https://trace.tools/privacy
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trace",
    "version": "0.0.1",
    "permissions": [
        "https:\/\/trace.tools\/*",
        "cookies"
    ],
    "description": "Find articles you've read in the past",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/google.com\/search?*",
                "*:\/\/trace.tools\/*"
            ],
            "js": [
                "readability-master\/Readability.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Trace"
    },
    "icons": {
        "16": "images\/favicon-16px.png",
        "32": "images\/favicon-32px.png",
        "48": "images\/favicon-64px.png",
        "128": "images\/favicon-128px.png"
    }
}