Trace

Find articles you've read in the past

Hvad er Trace?

Trace er en Chrome-udvidelse udviklet af http://trace.tools, og dens hovedfunktion er "Find articles you've read in the past".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Trace-udvidelses-CRX-fil

Download Trace-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Trace Trace
ID jamgeanaigaadcepnhmdaglegnjfmhkh
Officiel URL https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh
Beskrivelse Find articles you've read in the past
Filstørrelse 4.39 MB
Antal Installationer 23
Nuværende Version 0.0.1
Senest Opdateret 2020-05-06
Udgivelsesdato 2020-05-04
Udvikler http://trace.tools
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://trace.tools/login
URL til Fortrolighedspolitik Side https://trace.tools/privacy
Understøttede Sprog 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"
    }
}