Log Web History to Firebase

Record all your browsing history to Google's Firestore.

Log Web History to Firebaseคืออะไร?

Log Web History to Firebase เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vadim Markovtsev และคุณลักษณะหลักของมันคือ "Record all your browsing history to Google's Firestore."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Log Web History to Firebase

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

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

                        Record all your browsing history to Google's Cloud Firestore database. Chrome preserves only the last 90 days of browsing history locally, and the extension overcomes that limit by persisting the data in Google Cloud Platform. As a bonus, it becomes possible to aggregate history from browser instances installed on distinct machines.

"Log Web History to Firebase" submits details about each visited URL to your own Cloud Firestore, completely private and transparent. You need to setup a personal Firebase project with generous free tier that should be enough during several years. You can further study the records in "Cloud Firestore" at console.firebase.google.com, export them to BigQuery for analysis, download JSON, etc. Once you outgrow the free tier, you can either move the old data out from the DB, or purchase the pay-as-you-go Firebase plan from Google with estimated charges of less than 20 cents per month.

To start using the extension, you need to set two parameters: apiKey and projectId. Follow the Getting Started with Firebase guide to obtain them: https://firebase.google.com/docs/web/setup
Refer to the README for more details: https://github.com/vmarkovtsev/web-history-extension/blob/master/README.md
The users of Kiwi Browser on Android should disable QUIC in kiwi://flags

Note that the extension collects neither any tokens nor personal information. The only thing it does with your data is sending your browsing history to your Firebase over HTTPS.                    

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

ชื่อ Log Web History to Firebase Log Web History to Firebase
ID peeibbgjeaolekgoojkeefogkllmfgjf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/log-web-history-to-fireba/peeibbgjeaolekgoojkeefogkllmfgjf
คำอธิบาย Record all your browsing history to Google's Firestore.
ขนาดไฟล์ 108 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2021-01-11
วันที่เผยแพร่ 2021-01-03
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Vadim Markovtsev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vmarkovtsev/web-history-extension
URL หน้าช่วยเหลือ https://github.com/vmarkovtsev/web-history-extension/discussions
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Log Web History to Firebase",
    "author": "Vadim Markovtsev",
    "homepage_url": "https:\/\/github.com\/vmarkovtsev\/web-history-extension",
    "version": "1.4",
    "description": "Record all your browsing history to Google's Firestore.",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "settings.html",
        "default_icon": {
            "16": "16.png",
            "32": "32.png",
            "48": "48.png",
            "128": "128.png"
        }
    },
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "options_page": "settings.html",
    "permissions": [
        "storage",
        "gcm"
    ],
    "background": {
        "scripts": [
            "firebase-app.8.2.1.js",
            "firebase-firestore.8.2.1.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "page.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-8u4z+lRNopAWqByd0ZOLZH1PH9227S3tskylyr0086o='; object-src 'self'"
}