Trace
Find articles you've read in the past
Cos'è Trace?
Trace è un'estensione di Chrome sviluppata da http://trace.tools, e la sua funzione principale è "Find articles you've read in the past".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Trace
Scarica i file di estensione Trace in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | jamgeanaigaadcepnhmdaglegnjfmhkh |
URL Ufficiale | https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh |
Descrizione | Find articles you've read in the past |
Dimensione del File | 4.39 MB |
Conteggio Installazioni | 23 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2020-05-06 |
Data di Pubblicazione | 2020-05-04 |
Sviluppatore | http://trace.tools |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://trace.tools/login |
URL della Pagina della Politica sulla Privacy | https://trace.tools/privacy |
Lingue Supportate | 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" } } |