Open Selected Links

Opens selected links in new tabs using the context menu.

Open Selected Links क्या है?

Open Selected Links Mattes Groeger द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens selected links in new tabs using the context menu."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Features
-------------

* Open all links within a selection as new tabs
* Context menu – no annoying icon in the chrome bar :)
* Filter links for images, videos or audio
* See the first 10 link urls
* Finds html links as well as plain urls

How to use
-----------------

After installation make sure to restart the browser or reload the websites. Select some part of a webpage that contains links. Right click and choose 'Open selected links' -> 'All' from the context menu. They will now open to the right of your current tab. The context menu shows you how many pages will be opened. It also shows the first 10 urls.

Changes
-------------

1.0.5
* Added: Hungarian localization (hu)

1.0.4
* Added: Support for local files (file:///)

1.0.3
* Added: Brazilian portuguese localization (pt_BR)

1.0.2:
* Fixed: Extension still works after browser restart

1.0.1:
* Bugfixes

Feedback
---------------

Feedback is very welcome. Bugs and feature requests can be posted here: 
https://github.com/MattesGroeger/chrome-open-links/issues

This extension is completely open source. You can check the code and contribute: 
https://github.com/MattesGroeger/chrome-open-links

ENJOY!                    

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

नाम Open Selected Links Open Selected Links
ID cbmiafnaglmnkhnohfdkdgaohdhndkjp
आधिकारिक URL https://chrome.google.com/webstore/detail/open-selected-links/cbmiafnaglmnkhnohfdkdgaohdhndkjp
विवरण Opens selected links in new tabs using the context menu.
फ़ाइल का आकार 25.67 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2014-05-28
प्रकाशन तिथि 2014-05-28
रेटिंग 3.57/5 कुल 69 रेटिंग्स
डेवलपर Mattes Groeger
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://mattesgroeger.github.com/chrome-open-links
सहायता पृष्ठ URL https://github.com/MattesGroeger/chrome-open-links/issues
समर्थित भाषाएँ de,en,hu,pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_product_name__",
    "version": "1.0.5",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_product_description__",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "build\/links.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "build\/link_grabber.min.js",
                "build\/content.min.js"
            ]
        }
    ]
}