QFind

Find open tabs and organize them. Search for text, see list of matching tabs, open found tab, group tabs, etc.

QFind क्या है?

QFind that Michael Curry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find open tabs and organize them. Search for text, see list of matching tabs, open found tab, group tabs, etc."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Find elusive tabs quickly and easily by typing a text string. Open found tabs by clicking on the matching item in the results list.  

If you keep many windows and tabs open, I think you'll like this extension.

Other features:

* Optional persistent pop-out window allows rapid navigation through found items.

* Copy tab titles and URLs to clipboard in Markdown, WikiText, or CSV format

* Quick-access Omnibox commands: find, group, consolidate.

See https://github.com/inactivist/chrome-qfind/wiki/Change-Log for the official change history.                    

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

नाम QFind QFind
ID fhligoaannmlpdmgapklcocaoafioihh
आधिकारिक URL https://chromewebstore.google.com/detail/qfind/fhligoaannmlpdmgapklcocaoafioihh
विवरण Find open tabs and organize them. Search for text, see list of matching tabs, open found tab, group tabs, etc.
फ़ाइल का आकार 395 KB
स्थापना संख्या 135
वर्तमान संस्करण 0.0.0.25
अंतिम अपडेट 2013-11-22
प्रकाशन तिथि 2013-11-22
रेटिंग 5.00/5 कुल 8 रेटिंग्स
डेवलपर that Michael Curry
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://inactivist.github.io/chrome-qfind
सहायता पृष्ठ URL https://github.com/inactivist/chrome-qfind/wiki/QFind-FAQ
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QFind",
    "version": "0.0.0.25",
    "manifest_version": 2,
    "description": "Find open tabs and organize them.  Search for text, see list of matching tabs, open found tab, group tabs, etc.",
    "homepage_url": "http:\/\/inactivist.github.io\/chrome-qfind\/",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "omnibox": {
        "keyword": "qf"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "QFind\rFind text in open tabs",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "",
        "clipboardWrite",
        "clipboardRead"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/misc\/underscore-min.js",
                "src\/makestruct.js",
                "src\/ExcerptEntry.js",
                "src\/MatchEntry.js",
                "src\/QFUtil.js",
                "src\/ResultsModel.js",
                "src\/MatchMaker.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/apis.google.com\/ https:\/\/ssl.google-analytics.com; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            }
        }
    }
}