Chrome Tab Tools

Small tweaks to improve the life in the modern web.

Chrome Tab Toolsคืออะไร?

Chrome Tab Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dorin Lazăr และคุณลักษณะหลักของมันคือ "Small tweaks to improve the life in the modern web."

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

screenshot

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

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

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

                        Features:

- Main action (click on the chrome extension bar icon): moves all tabs in the current window when you press the Chrome Tab Tools icon in the chrome extension bar. The list of URLs to ignore when compacting tabs can be configured.
- Right click menu: Opens all linked images in separate tabs. When clicking on selected text: Opens all links in the selected text/area.
- Background action (auto): De-duplicates tabs - whenever you open a page you have already opened, the previous instance is closed. Configurable.
- Background action (auto): Removes social media junk from URLs - things that social media platforms attach to the URLs to track the source of your content. It does that by discarding the search strings in your URL that begin with certain key-words (like utm_ or fbclid). The list is configurable
- Background action (auto): Image viewer enhancements: configurable background for single-image tabs. Based on an idea found in the center-image add-in. Configurable.
- Referer removal - remove referer for designated sites.                    

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

ชื่อ Chrome Tab Tools Chrome Tab Tools
ID aknanahjikhcdjljhojbndnhfiknfali
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/chrome-tab-tools/aknanahjikhcdjljhojbndnhfiknfali
คำอธิบาย Small tweaks to improve the life in the modern web.
ขนาดไฟล์ 88.81 KB
จำนวนการติดตั้ง 525
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2023-10-25
วันที่เผยแพร่ 2020-06-22
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Dorin Lazăr
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Tab Tools",
    "description": "Small tweaks to improve the life in the modern web.",
    "version": "0.6.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Gather all tabs in current window"
    },
    "content_scripts": [
        {
            "js": [
                "improved-browsing-content-script.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16x16.png",
        "48": "images\/icon48x48.png",
        "128": "images\/icon.png"
    },
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "tabs",
        "storage",
        "scripting",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "short_name": "CTT.klib"
}