Trace

Find articles you've read in the past

What is Trace?

Trace is a Chrome extension developed by http://trace.tools, and its main feature is "Find articles you've read in the past".

Extension Screenshots

screenshot
screenshot
screenshot

Download Trace Extension CRX File

Download Trace extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Trace Trace
ID jamgeanaigaadcepnhmdaglegnjfmhkh
Official URL https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh
Description Find articles you've read in the past
File Size 4.39 MB
Installation Count 23
Current Version 0.0.1
Last Updated 2020-05-06
Publish Date 2020-05-04
Developer http://trace.tools
Email [email protected]
Payment Type free
Extension Website https://trace.tools/login
Privacy Policy Page URL https://trace.tools/privacy
Supported Languages 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"
    }
}