URL Localizer
This extension allows the user to change the domain or url parameters easily before loading page.
Apa itu URL Localizer?
URL Localizer adalah ekstensi Chrome yang dikembangkan oleh Zeshi Zheng, dan fitur utamanya adalah "This extension allows the user to change the domain or url parameters easily before loading page.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi URL Localizer
Unduh file ekstensi URL Localizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | URL Localizer |
ID | caedmimeiecplmfpiaoboinalimdniea |
URL Resmi | https://chromewebstore.google.com/detail/url-localizer/caedmimeiecplmfpiaoboinalimdniea |
Deskripsi | This extension allows the user to change the domain or url parameters easily before loading page. |
Ukuran File | 100 KB |
Jumlah Instalasi | 17 |
Versi Saat Ini | 1.1.0 |
Terakhir Diperbarui | 2017-12-22 |
Tanggal Publikasi | 2017-12-21 |
Penilaian | 5.00/5 Total 5 Penilaian |
Pengembang | Zeshi Zheng |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |