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…

SameTab - keep only one copy of the tab open क्या है?

SameTab - keep only one copy of the tab open valentin.alekseev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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…"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SameTab - keep only one copy of the tab open एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
आधिकारिक URL https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
विवरण 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…
फ़ाइल का आकार 8.9 KB
स्थापना संख्या 12
वर्तमान संस्करण 1.1
अंतिम अपडेट 2016-02-16
प्रकाशन तिथि 2016-02-16
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर valentin.alekseev
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/valentinalexeev/chrome-sametab
समर्थित भाषाएँ 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"
    ]
}