JS (JavaScript) Reloader

JS (JavaScript) Reloader is a browser extension, that allows you to reload JavaScript without reloading the page itself.

JS (JavaScript) Reloader là gì?

JS (JavaScript) Reloader là một tiện ích mở rộng Chrome được phát triển bởi dfparker, và tính năng chính của nó là "JS (JavaScript) Reloader is a browser extension, that allows you to reload JavaScript without reloading the page itself.".

Tải xuống tệp CRX của tiện ích mở rộng JS (JavaScript) Reloader

Tải xuống các tệp mở rộng JS (JavaScript) Reloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        = JS Reloader (JavaScript Reloader)

JS Reloader is a browser extension that allows you to reload JavaScript without reloading the page itself.

It's currently available for Google Chrome

== Usage

Reload all JavaScripts via the keyboard shortcut F10, or via the context-menu's option "Reload JS".

One may customize the keyboard shortcut under the extensions settings page.


=== Google Chrome
Grab the latests version for Chrome at https://chrome.google.com/extensions/detail/gpmblpbhjcdbhgcekpfkdfpglplmhffo 

== Limitations

JS Reloader does not reload inline script.

Beware that reloading script will not update every object already loaded. One may run into interesting issues where old versions of functions are used (i.e. as callbacks/closures/exisitng objects). 
–  Alexei Levenkov Mar 12 '11 at 22:01

== Feedback

You are welcome to report issues on GitHub.

* View Source on GitHub (http://github.com/dfparker2002/js-reloader-chrome)
* Report Issues on GitHub (http://github.com/dfparker2002/js-reloader-chrome/issues)

== Attribution & Credits

This extension is a first extension & learning exercise for me. I adapted it from Kenneth Auchenberg's css-reloader-chrome project; https://github.com/auchenberg/css-reloader-chrome

I used a "free" icon I found here, https://www.iconfinder.com/icons/104117/refresh_reload_icon#size=256

== Copyright

Copyright (c) 2015, David Parker. See LICENSE for details.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên JS (JavaScript) Reloader JS (JavaScript) Reloader
ID gpmblpbhjcdbhgcekpfkdfpglplmhffo
URL Chính Thức https://chrome.google.com/webstore/detail/js-javascript-reloader/gpmblpbhjcdbhgcekpfkdfpglplmhffo
Mô tả JS (JavaScript) Reloader is a browser extension, that allows you to reload JavaScript without reloading the page itself.
Kích Thước Tệp 78.44 KB
Số Lần Cài Đặt 438
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-05-17
Ngày Phát Hành 2015-05-17
Đánh Giá 1.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển dfparker
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JS (JavaScript) Reloader",
    "version": "1.0.1",
    "description": "JS (JavaScript) Reloader is a browser extension, that allows you to reload JavaScript without reloading the page itself.",
    "options_page": "options.htm",
    "background": {
        "page": "background.htm"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jsreloader.content.js"
            ]
        }
    ]
}