SPush SP editor

Developer Tools extension to auto save script/css files to SharePoint.

SPush SP editorคืออะไร?

SPush SP editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sintosp.blogspot.com และคุณลักษณะหลักของมันคือ "Developer Tools extension to auto save script/css files to SharePoint."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SPush SP editor

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

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

                        Developer Tools extension to auto save script/css files to SharePoint.

It is the quickest way to change and test content files of your SharePoint App. 
In addition it might be a good opportunity to fix some js/css bugs without need to deploy scripts using Visual Studio or provide new package of the app.

Key features:
* Cntrl+s forces js or css to be rewritten.
* Allows modifying SharePoint 2013 App content from the host web
* Allows to automatically check-out js/css documents if "Require documents to be checked out before they can be edited" option is True;
* Allows quick creation of sample js and css files by executing SPush(typeOrUrl) in console (see sample video or visit GitHub link below)


0.63
* Fixed bug with saving in not root site collection.
0.64
* Fixed issue with relative URL while editing scripts of apps from the host web.
0.65
* DevTools error loggin added.
0.66
* JSLink save issue fixed.
0.67
* solved issue with saving files with comments and other spec chracters;
* 'style%20library' decoding issue is fixed.
0.68
* On-Premise js fix.
1.0
* SPush(typeOrUrl) help file creation method is implemented;
* 'Library url' configureation is added.
1.0.1
* Logo is changed
1.0.2
* Fixed issue which quick snippet SPush('js') on sub-webs;
* Removed dependencies from OOB SharePoint load css/js methods.

Tested under SharePoint 2010+ (on-prem and O365 SharePoint Online).

Find GIT repository here: https://github.com/wideserg/CE/tree/master/SPush                    

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

ชื่อ SPush SP editor SPush SP editor
ID bdeilgnnljmooaheogonhpggepnhhlhf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/spush-sp-editor/bdeilgnnljmooaheogonhpggepnhhlhf
คำอธิบาย Developer Tools extension to auto save script/css files to SharePoint.
ขนาดไฟล์ 12.03 KB
จำนวนการติดตั้ง 286
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2018-05-16
วันที่เผยแพร่ 2018-05-16
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://sintosp.blogspot.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://sintosp.blogspot.com.by/2015/03/spush-chrome-extention-looking-ant.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SPush SP editor",
    "short_name": "SPush",
    "author": "Sergey.Shiroky",
    "homepage_url": "http:\/\/sintosp.blogspot.com\/",
    "version": "1.0.3",
    "description": "Developer Tools extension to auto save script\/css files to SharePoint.",
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "devtools_page": "devtools.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "cs.proxy.js"
            ]
        }
    ],
    "icons": {
        "256": "ico.png"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2
}