Raw Code Formatter
Raw Code Formatter in the Browser
What is Raw Code Formatter?
Raw Code Formatter is a Chrome extension developed by Teo Patraș, and its main feature is "Raw Code Formatter in the Browser".
Extension Screenshots
Download Raw Code Formatter Extension CRX File
Download Raw Code Formatter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Raw Code Formatter in the Browser. Changes theme based on the OS Dark Mode. Supported modes: ○ yaml ○ python ○ javascript ○ jsx ○ xml ○ markdown
Extension Basic Information
Name | Raw Code Formatter |
ID | knfglfmkncmmlkmeniibncdeeafmjnfh |
Official URL | https://chromewebstore.google.com/detail/raw-code-formatter/knfglfmkncmmlkmeniibncdeeafmjnfh |
Description | Raw Code Formatter in the Browser |
File Size | 181 KB |
Installation Count | 507 |
Current Version | 0.0.2 |
Last Updated | 2020-03-26 |
Publish Date | 2020-03-23 |
Rating | 4.67/5 Total 3 Ratings |
Developer | Teo Patraș |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://github.com/teodorpatras/rawformatter/blob/master/privacy.md |
Supported Languages | 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" ] } |