*S Updater

The extension saves changes made in css/js files in debug mode. To use this plugin you need to place _updater_.php in the site root.

*S Updaterคืออะไร?

*S Updater เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bazilio-cat.blogspot.com และคุณลักษณะหลักของมันคือ "The extension saves changes made in css/js files in debug mode. To use this plugin you need to place _updater_.php in the site root."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย *S Updater

ดาวน์โหลดไฟล์ส่วนขยาย *S Updater ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allow you to save a lot of time. You change styles directly in the browser and your changes are automatically stored in the css on the development server. 
You no longer have to repeatedly switch between IDE and browser.

In order for the extension to work, you must have:
- Connection to your development server via http (not https)
- Css and js files on the server must be in uncompressed form, exactly as they are sent to the browser.
- To place the handler into the appropriate place on the dev server and provide the possibility of its execution on http request from this extension. Default is the root of your web server.
- Specify the name and path of the handler in the option 'Updater url' on the tab "*SU" in CDT. Default is "_updater_.php".
- Swith on option "Save changes in css and js, done in the Chrom DevTools" on the tab "*SU" in CDT.

Code of handler module written on PHP see on the 'about' page of this extension. (Click the icon of '*SU' extension on the chrome toolbar). Create a new file with the name "_updater_.php" at the root of the development web server, and then copy the code.

You can write a similar handler on another programming language, and specify the name of the module that will handle requests on saving in the option 'Updater url'.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ *S Updater *S Updater
ID ikfihncigedpibaifnenfimcfgmhnhlb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/s-updater/ikfihncigedpibaifnenfimcfgmhnhlb
คำอธิบาย The extension saves changes made in css/js files in debug mode. To use this plugin you need to place _updater_.php in the site root.
ขนาดไฟล์ 67.73 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-01-10
วันที่เผยแพร่ 2017-01-09
ผู้พัฒนา https://bazilio-cat.blogspot.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "*S Updater",
    "short_name": "*S Updater",
    "version": "1.2",
    "description": "The extension saves changes made in css\/js files in debug mode. To use this plugin you need to place _updater_.php in the site root.",
    "icons": {
        "16": "img\/16.png",
        "19": "img\/19.png",
        "38": "img\/38.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "devtools_page": "html\/devtools.html",
    "background": {
        "page": "html\/background.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "",
        "contextMenus",
        "tabs",
        "debugger",
        "storage"
    ],
    "browser_action": {
        "default_title": "*S Updater Application",
        "default_icon": {
            "19": "img\/19.png",
            "38": "img\/38.png"
        },
        "default_popup": "html\/about.html"
    }
}