Query URL
Update url and links with custom query on the fly.
Query URL क्या है?
Query URL crohrefdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Update url and links with custom query on the fly."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Query URL एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Query URL extension resolves url custom queries. Simply add query or hash and extension will update url with defined query for you. Every html tag will be updated with you query so that you do not need to add it manually to every link you follow.
एक्सटेंशन की मूल जानकारी
नाम | Query URL |
ID | djgohjhdlcjbemnlhdpbphkmhjoenfdj |
आधिकारिक URL | https://chromewebstore.google.com/detail/query-url/djgohjhdlcjbemnlhdpbphkmhjoenfdj |
विवरण | Update url and links with custom query on the fly. |
फ़ाइल का आकार | 19.98 KB |
स्थापना संख्या | 35 |
वर्तमान संस्करण | 1.0.0.3 |
अंतिम अपडेट | 2021-05-11 |
प्रकाशन तिथि | 2020-08-12 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | crohrefdev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/AlHota/query-url |
सहायता पृष्ठ URL | https://github.com/AlHota/query-url |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Query URL", "description": "Update url and links with custom query on the fly.", "version": "1.0.0.3", "content_security_policy": "default-src 'self'", "manifest_version": 2, "browser_action": { "default_icon": ".\/icons\/icon19.png", "default_popup": "popup.html" }, "icons": { "16": ".\/icons\/icon16.png", "19": ".\/icons\/icon19.png", "48": ".\/icons\/icon48.png", "128": ".\/icons\/icon128.png" }, "permissions": [ "activeTab", "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "*:\/\/*\/*" ], "js": [ ".\/js\/main.js" ] } ] } |