Relevance - Smart Tab Organizer

Relevance is a smart tab organizer. It’s nonintrusive and fully private. When you activate it your tabs are sorted based on the…

Relevance - Smart Tab Organizer क्या है?

Relevance - Smart Tab Organizer Numergent द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Relevance is a smart tab organizer. It’s nonintrusive and fully private. When you activate it your tabs are sorted based on the…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

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

crx प्रारूप में Relevance - Smart Tab Organizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        Relevance is a smart tab organizer. It’s nonintrusive and fully private. When you activate it your tabs are sorted based on the duration you are actively viewing it combined with the total time you actively browse pages on that domain. It will allow you to discover greater insights about your browsing habits.

Relevance will keep track of the pages you actually read, and how long you spend reading them. This information is kept completely private, on your local browser. As you open tabs, its knowledge of what's important to you grows, and when you activate it the tabs  for your current window are ordered depending on how long you have spent reading them.

This creates a natural arrangement where the tabs you have spent the longest on, which are expected to be the most relevant, are placed first, and the ones you haven't read at all are shunted to the end.

I wrote *Relevance* to help me manage the huge mess of tabs you end up with after a while of browsing, like doing a web search and opening tabs for a lot of results.

This version of Relevance has an experimental integration with StartPage. After you run a search, it'll look at the results on your current page and re-prioritize the links shown to bring to the front those you have spent the longest reading.                    

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

नाम Relevance - Smart Tab Organizer Relevance - Smart Tab Organizer
ID hgklcaodfmndpkajdmcmlpihhoenhpbp
आधिकारिक URL https://chromewebstore.google.com/detail/relevance-smart-tab-organ/hgklcaodfmndpkajdmcmlpihhoenhpbp
विवरण Relevance is a smart tab organizer. It’s nonintrusive and fully private. When you activate it your tabs are sorted based on the…
फ़ाइल का आकार 421 KB
स्थापना संख्या 1,142
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2017-10-29
प्रकाशन तिथि 2017-10-29
रेटिंग 4.44/5 कुल 9 रेटिंग्स
डेवलपर Numergent
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Relevance - Smart Tab Organizer",
    "short_name": "Relevance",
    "version": "1.1.0",
    "browser_action": {
        "default_title": "Organize tabs",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "idle",
        "alarms",
        "contextMenus",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.startpage.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "manifest_version": 2
}