SameTab - keep only one copy of the tab open

SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…

Apa itu SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open adalah ekstensi Chrome yang dikembangkan oleh valentin.alekseev, dan fitur utamanya adalah "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".

Unduh Berkas CRX Ekstensi SameTab - keep only one copy of the tab open

Unduh file ekstensi SameTab - keep only one copy of the tab open dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.                    

Informasi Dasar Ekstensi

Nama SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
URL Resmi https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Deskripsi SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
Ukuran File 8.9 KB
Jumlah Instalasi 12
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-02-16
Tanggal Publikasi 2016-02-16
Penilaian 3.50/5 Total 2 Penilaian
Pengembang valentin.alekseev
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/valentinalexeev/chrome-sametab
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SameTab - keep only one copy of the tab open",
    "description": "",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "storage"
    ]
}