Trace

Find articles you've read in the past

Vad är Trace?

Trace är en Chrome-tillägg utvecklad av http://trace.tools, och dess huvudfunktion är "Find articles you've read in the past".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Trace-förlängningens CRX-fil

Ladda ner Trace-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Trace Trace
ID jamgeanaigaadcepnhmdaglegnjfmhkh
Officiell webbadress https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh
Beskrivning Find articles you've read in the past
Filstorlek 4.39 MB
Antal Installationer 23
Aktuell Version 0.0.1
Senast Uppdaterad 2020-05-06
Publiceringsdatum 2020-05-04
Utvecklare http://trace.tools
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://trace.tools/login
URL till Sekretesspolicy Sidan https://trace.tools/privacy
Stödda Språk 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"
    }
}