Full Text Tabs Forever

Search your full browsing history

Full Text Tabs Foreverคืออะไร?

Full Text Tabs Forever เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zenture และคุณลักษณะหลักของมันคือ "Search your full browsing history"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Full Text Tabs Forever

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

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

                        Search everything you've seen in your browser. Full Text Tabs Forever (FTTF) is a powerhouse tool for navigating your browsing history.

**Doesn't Chrome do that already? How is this different?**

Chrome does not let you search the text on pages you've visited, only the URLs/titles, and it deletes your history after a number of months.

FTTF is different:

- **Full-Text Search Capabilities:** The full content of every page you've visited becomes searchable, ensuring that no piece of information ever slips through the cracks.
    
- **Permanent History:** Your digital footprints are yours to keep. Your data is yours, so it should not be removed without your approval. Nothing is deleted automatically.
    
- **Instant indexing:** FTTF creates a search index as you browse, so pages are immediately available for searching right after you land on a page.
    
- **For your eyes only:** Your browsing history is stored locally on your device, and not on any external servers. Beware that if you switch computers your FTTF history will not automatically come with you. It can be exported though.

**Who is it for?**

Data hoarders like myself that never want to delete anything, and want everything to be searchable. More generally, if you've ever felt limited by the standard history search you should try this out.

**How it works:**

Chrome extensions have access to the pages you visit, which lets FTTF make an index of the content on any page. When a page loads its content is extracted and indexed.

Extracted? Yes, or "distilled" if you prefer. Full web pages are huge and have a lot of information that's not related to the content itself. FTTF will ignore all of that. It acts like "reader mode" to find relevant content on a page and only index that.                    

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

ชื่อ Full Text Tabs Forever Full Text Tabs Forever
ID gfmbnlbnapjmffgcnbopfgmflmlfghel
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/full-text-tabs-forever/gfmbnlbnapjmffgcnbopfgmflmlfghel
คำอธิบาย Search your full browsing history
ขนาดไฟล์ 2.28 MB
จำนวนการติดตั้ง 95
เวอร์ชันปัจจุบัน 1.1.5
อัปเดตครั้งล่าสุด 2024-01-19
วันที่เผยแพร่ 2023-11-27
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Zenture
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.iubenda.com/privacy-policy/17043889/legal
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Full Text Tabs Forever",
    "description": "Search your full browsing history",
    "version": "1.1.5",
    "manifest_version": 3,
    "permissions": [
        "unlimitedStorage",
        "downloads",
        "tabs",
        "activeTab"
    ],
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": "\/assets\/icon-cropped-1_48.png",
        "default_title": "Open Tab History"
    },
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/content-script.js"
            ]
        }
    ]
}