URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
Что такое URL Localizer?
URL Localizer - это расширение Chrome, разработанное Zeshi Zheng, и его основная функция - "This extension allows the user to change the domain or url parameters easily before loading page.".
Снимки экрана расширения
Скачать файл CRX расширения URL Localizer
Скачайте файлы расширений URL Localizer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        This is a Free Chrome Extension that helps engineers to capture and modify url.
features: 
Control if you want to Pause Website Loading before you changing parameters
Capture protocol//hostname:port/filepath?queries
Edit parameters/domain to whatever you want
Add new parameters
Delete a parameter
Case-ignored Search
Copy all parameters easily                     Основная информация о расширении
| Название |   |  
| ID | caedmimeiecplmfpiaoboinalimdniea | 
| Официальный URL | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea | 
| Описание | This extension allows the user to change the domain or url parameters easily before loading page. | 
| Размер файла | 100 KB | 
| Количество установок | 17 | 
| Текущая Версия | 1.1.0 | 
| Последнее Обновление | 2017-12-22 | 
| Дата публикации | 2017-12-21 | 
| Рейтинг | 5.00/5 Всего 5 оценок | 
| Разработчик | Zeshi Zheng | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Поддерживаемые языки | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Localizer",
    "description": "This extension allows the user to change the domain or url parameters easily before loading page.",
    "version": "1.1.0",
    "icons": [],
    "browser_action": {
        "default_icon": "imgs\/icon.png",
        "default_popup": "dist\/index.html",
        "default_title": "Start Capturing"
    },
    "author": "Zeshi (Steve) Zheng",
    "permissions": [
        "http:\/\/*\/",
        "http:\/\/*\/*",
        "https:\/\/*\/",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background1020.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/",
                "http:\/\/*\/*",
                "https:\/\/*\/",
                "https:\/\/*\/*"
            ],
            "js": [
                "url-handler1020.js"
            ]
        }
    ]
}  |  |