DocTrackr

Analyze Google™ Docs Revisions

DocTrackrคืออะไร?

DocTrackr เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NextGrowth Labs Pvt Ltd และคุณลักษณะหลักของมันคือ "Analyze Google™ Docs Revisions"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DocTrackr

ดาวน์โหลดไฟล์ส่วนขยาย DocTrackr ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        DocTrackr is a powerful and intuitive Google™ Chrome™ extension that allows you to track and analyze the revision history of Google™ Docs. With DocTrackr, you can easily monitor changes made to your documents, pinpoint who made them, and analyze the content by revision history.

The extension provides a detailed overview of each revision, including the revision ID, user name, content, and word count for easy analysis. This feature is especially useful in detecting instances of plagiarism or unauthorized copying and pasting of content.

DocTrackr is designed to be user-friendly and requires no technical expertise to operate. Simply install the extension and it will integrate seamlessly with your Google™ Docs. DocTrackr is a must-have tool for anyone who values document integrity and accuracy.

It is very useful in cases when you'd like to track plagarism, or AI written content.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DocTrackr DocTrackr
ID ckkjeleemkepdnkhpaooojcmppieldge
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/doctrackr/ckkjeleemkepdnkhpaooojcmppieldge
คำอธิบาย Analyze Google™ Docs Revisions
ขนาดไฟล์ 109 KB
จำนวนการติดตั้ง 75
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2023-09-09
วันที่เผยแพร่ 2023-04-20
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา NextGrowth Labs Pvt Ltd
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DocTrackr",
    "description": "Analyze Google\u2122 Docs Revisions",
    "version": "1.5",
    "icons": {
        "16": "icons\/icon-16.png",
        "38": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "oauth2": {
        "client_id": "1085968135132-fhc8vhe17b3p1ok49t4af3cvl9mqo8fh.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/drive.readonly"
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "DocTrackr",
        "default_popup": "popup.html",
        "default_icon": "icons\/image.png"
    },
    "permissions": [
        "tabs",
        "identity",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/docs.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "",
                "*:\/\/docs.google.com\/*\/*\/edit*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "all-revision.html",
                "allrevision.js",
                "popup.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}