Trace
Find articles you've read in the past
ما هو Trace؟
Trace هو إضافة Chrome تم تطويرها بواسطة http://trace.tools، والميزة الرئيسية لها هي "Find articles you've read in the past".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trace
قم بتنزيل ملفات الامتداد Trace بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة سياسة الخصوصية | 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" } } |