Select filter
Filtering select items.
Select filter क्या है?
Select filter Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filtering select items."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Select filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Add filter to all select boxes in page. You must input target URL list by regular expression in option page. ex) ^https?://127\.0\.0\.1/ => 127.0.0.1 with HTTP/HTTPS redmine => All URL of includes 'redmine' . => If you want enable to all URL, you must use almighty matcher, like '.', '.*' .
एक्सटेंशन की मूल जानकारी
नाम | Select filter |
ID | cfndbgamcjlfppbehioihlpinfcheinc |
आधिकारिक URL | https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc |
विवरण | Filtering select items. |
फ़ाइल का आकार | 38.8 KB |
स्थापना संख्या | 47 |
वर्तमान संस्करण | 0.0.3 |
अंतिम अपडेट | 2017-12-04 |
प्रकाशन तिथि | 2017-12-03 |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kuwa72/chrome-extension-findname |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Select filter", "version": "0.0.3", "manifest_version": 2, "description": "Filtering select items.", "homepage_url": "https:\/\/github.com\/kuwa72\/chrome-extension-findname", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/icon19.png" }, "permissions": [ "tabs", "notifications", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "browser_style": true } } |