Raw Code Formatter
Raw Code Formatter in the Browser
Raw Code Formatterคืออะไร?
Raw Code Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Teo Patraș และคุณลักษณะหลักของมันคือ "Raw Code Formatter in the Browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Raw Code Formatter
ดาวน์โหลดไฟล์ส่วนขยาย Raw Code Formatter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Raw Code Formatter in the Browser. Changes theme based on the OS Dark Mode. Supported modes: ○ yaml ○ python ○ javascript ○ jsx ○ xml ○ markdown
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Raw Code Formatter |
ID | knfglfmkncmmlkmeniibncdeeafmjnfh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/raw-code-formatter/knfglfmkncmmlkmeniibncdeeafmjnfh |
คำอธิบาย | Raw Code Formatter in the Browser |
ขนาดไฟล์ | 181 KB |
จำนวนการติดตั้ง | 507 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2020-03-26 |
วันที่เผยแพร่ | 2020-03-23 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Teo Patraș |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/teodorpatras/rawformatter/blob/master/privacy.md |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Raw Code Formatter", "version": "0.0.2", "description": "Raw Code Formatter in the Browser", "manifest_version": 2, "background": { "scripts": [ "config\/production.js", "js\/analytics.js", "js\/raw.js", "js\/background.js" ], "persistent": false }, "icons": { "16": "img\/rawformatter16.png", "32": "img\/rawformatter32.png", "48": "img\/rawformatter48.png", "128": "img\/rawformatter128.png" }, "content_scripts": [ { "all_frames": true, "js": [ "codemirror\/codemirror.js", "codemirror\/addon\/fold\/foldcode.js", "codemirror\/addon\/fold\/indent-fold.js", "codemirror\/addon\/fold\/foldgutter.js", "codemirror\/addon\/fold\/brace-fold.js", "codemirror\/addon\/fold\/comment-fold.js", "codemirror\/addon\/fold\/markdown-fold.js", "codemirror\/addon\/fold\/xml-fold.js", "codemirror\/mode\/yaml.js", "codemirror\/mode\/python.js", "codemirror\/mode\/jsx.js", "codemirror\/mode\/javascript.js", "codemirror\/mode\/xml.js", "codemirror\/mode\/markdown.js", "codemirror\/addon\/scroll\/simplescrollbars.js", "js\/raw.js", "js\/content.js" ], "css": [ "codemirror\/codemirror.css", "codemirror\/addon\/fold\/foldgutter.css", "codemirror\/theme\/neo.css", "codemirror\/theme\/material.css", "codemirror\/addon\/scroll\/scrollbars.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; connect-src https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "https:\/\/www.google-analytics.com\/", "background", "contextMenus" ] } |