Android Source Raw
Adds raw option for Google's android.googlesource.com code view
What is Android Source Raw?
Android Source Raw is a Chrome extension developed by ryanjharter, and its main feature is "Adds raw option for Google's android.googlesource.com code view".
Extension Screenshots
Download Android Source Raw Extension CRX File
Download Android Source Raw 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
The Android Source Raw extension allows you to view unformatted source code files at android.googlesource.com to make copying and pasting fun and easy.
Extension Basic Information
Name | |
ID | bilfmlekfijdkhjelnajfiganbicgkgo |
Official URL | https://chrome.google.com/webstore/detail/android-source-raw/bilfmlekfijdkhjelnajfiganbicgkgo |
Description | Adds raw option for Google's android.googlesource.com code view |
File Size | 26.78 KB |
Installation Count | 248 |
Current Version | 1.0 |
Last Updated | 2014-12-18 |
Publish Date | 2014-12-18 |
Rating | 5.00/5 Total 2 Ratings |
Developer | ryanjharter |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Android Source Raw", "description": "Adds raw option for Google's android.googlesource.com code view", "version": "1.0", "content_security_policy": "script-src 'self' https:\/\/android.googlesource.com; object-src 'self'", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "permissions": [ "tabs", "*:\/\/android.googlesource.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/android.googlesource.com\/*" ], "js": [ "ref-inject-gitiles-raw.js" ] } ] } |