Trace
Find articles you've read in the past
Trace क्या है?
Trace http://trace.tools द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find articles you've read in the past"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trace एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
ID | jamgeanaigaadcepnhmdaglegnjfmhkh |
आधिकारिक URL | https://chrome.google.com/webstore/detail/trace/jamgeanaigaadcepnhmdaglegnjfmhkh |
विवरण | Find articles you've read in the past |
फ़ाइल का आकार | 4.39 MB |
स्थापना संख्या | 23 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2020-05-06 |
प्रकाशन तिथि | 2020-05-04 |
डेवलपर | http://trace.tools |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://trace.tools/login |
गोपनीयता नीति पृष्ठ URL | https://trace.tools/privacy |
समर्थित भाषाएँ | 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" } } |