.URL Handler
An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.
.URL Handler क्या है?
.URL Handler Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में .URL Handler एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A really simple plugin to fix a slight but annoying problem with current versions of Chrome. The extension is called when a local *.url file is opened and automatically redirects the tab to the URL contained within the file rather than simply displaying it in plain text. To see more about the issue see here: http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary Note: This extension requires the "Allow access to file URLs" permission.
एक्सटेंशन की मूल जानकारी
नाम | .URL Handler |
ID | nhmccpjmdhejpfhafcfajkgifkmjhkgf |
आधिकारिक URL | https://chromewebstore.google.com/detail/url-handler/nhmccpjmdhejpfhafcfajkgifkmjhkgf |
विवरण | An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details. |
फ़ाइल का आकार | 38.38 KB |
स्थापना संख्या | 8,776 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2012-09-03 |
प्रकाशन तिथि | 2012-09-03 |
रेटिंग | 3.08/5 कुल 26 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | http://code.google.com/p/chromium/issues/detail?id=114871&can=5&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20OS%20Area%20Feature%20Status%20Owner%20Summary |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": ".URL Handler", "version": "1.0", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "description": "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.", "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "file:\/\/*.url" ], "js": [ "jquery.js", "openurl.js" ] } ] } |