Dev Helper

Dev Helper

什麼是Dev Helper?

Dev Helper是由toni.nichev開發的Chrome擴展程式,該擴展的主要功能是“Dev Helper”。

擴展截圖

screenshot

下載Dev Helper擴展crx文件

下載Dev Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Dev helper is all in one development and profiling extension for Google Chrome which has the following features:

- Profiling webpages and drawing charts showing loading time for all assets, split by domain (including time till the first byte received)

- Set up rewrite rules to override request and response urls, allowing developers to test without actually deploy new code.
       Developers could override, add or replace request and response headers to test different scenarios. For example adding 'Access-Control-Allow-Origin: *' in the response header section will resolve cross domain script blocking. 
Another way to use it is to replace asset or script (JavaScript and CSS) with local copy. This way the developer could make changes and test the functionality without deployment.

1.Install the extension from chrome app store.
2. Open page’s source code, and find the script tag, that you want to re-write.
3. Copy the code, and host it locally
4. Set up rewrite rule to load this file from your local web host 

Note, keep in mind that Match url is actually a regex so any regEx character should be escaped!
For example if you want to match http://mysite.com/global.js?version=1 and redirect it to http://localhost?version=1
You could do this:
Match url:  http:\/\/mysite\.com\/global.js?(.*)
Replacement URL: http://localhost?($1)

The $1 will replace all query string parameters in the replacement url with these from the original url.


- setting up rewrite rules to load assets from different locations. 
	For example a developer could write a regular expression pattern to match all JavaScript files in particular website where he/she is working on, and load them from their local host. This way active development could be done in real time, and new features could be tested before deploying to production. This method is also useful to debug a production issues.

	example: if developer wants to test how the new code will affect the production website: http://www.mysite.com where all Java Script comes from: http://mysite.com/scripts/all_java_script.js file, they could write a rule that will match 'http://mysite.com/scripts/all_java_script.js' and load it from the localhost 'http://localhost/all_java_script.js'
			 
- Setting proxy rules that match different Regular expression patterns.
	Developers could write different matching patterns for different proxy rules.

- Script injection allowing to add new CSS or Java Script to a website for testing purposes.

Detailed instructions and examples of how to use it could be found here: https://www.toni-develops.com/a-homepage-section/projects/using-dev-helper-chrome-extension-for-local-development/                    

擴展基本資訊

名稱 Dev Helper Dev Helper
ID kbbgddcndpjnadfacanamniaomcohlcc
官方網址 https://chromewebstore.google.com/detail/dev-helper/kbbgddcndpjnadfacanamniaomcohlcc
簡介 Dev Helper
檔案大小 90.47 KB
安裝次數 793
目前版本 2.4
更新時間 2021-05-12
上架時間 2018-10-15
評分 5.00/5 共 8 次評分
開發者 toni.nichev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.toni-develops.com/a-homepage-section/projects/using-dev-helper-chrome-extension-for-local-development/
說明頁面URL https://www.toni-develops.com/a-homepage-section/projects/using-dev-helper-chrome-extension-for-local-development/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dev Helper",
    "version": "2.4",
    "description": "Dev Helper",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "assets\/scripts\/jquery.min.js",
                "assets\/scripts\/page_content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "proxy"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_title": "Selected Text",
        "default_icon": ".\/settings.png",
        "default_popup": "markups\/popup.html"
    },
    "manifest_version": 2
}