Query URL

Update url and links with custom query on the fly.

ما هو Query URL؟

Query URL هو إضافة Chrome تم تطويرها بواسطة crohrefdev، والميزة الرئيسية لها هي "Update url and links with custom query on the fly.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Query URL

قم بتنزيل ملفات الامتداد Query URL بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}