github-gist-search
Chrome Extension GitHub Gist Search
What is github-gist-search?
github-gist-search is a Chrome extension developed by thaddeusjiang, and its main feature is "Chrome Extension GitHub Gist Search".
Extension Screenshots
Download github-gist-search Extension CRX File
Download github-gist-search 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
This is a chrome extension, search for your GitHub Gist by Chrome search box. Extension Basic Information
| Name | |
| ID | mamcpimmmcfjddbnldmnbajnknjjdhkk |
| Official URL | https://chrome.google.com/webstore/detail/github-gist-search/mamcpimmmcfjddbnldmnbajnknjjdhkk |
| Description | Chrome Extension GitHub Gist Search |
| File Size | 881 KB |
| Installation Count | 32 |
| Current Version | 0.3 |
| Last Updated | 2019-01-16 |
| Publish Date | 2019-01-16 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | thaddeusjiang |
| Payment Type | free |
| Extension Website | https://github.com/ThaddeusJiang/chrome-extension-github-gist-search |
| Help Page URL | https://github.com/ThaddeusJiang/chrome-extension-github-gist-search/issues |
| Supported Languages | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "github-gist-search",
"description": "Chrome Extension GitHub Gist Search",
"version": "0.3",
"browser_action": {
"default_popup": "hello.html",
"default_icon": "images\/icon128.png"
},
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"render.js"
]
}
],
"web_accessible_resources": [
"gist.css"
],
"manifest_version": 2
} | |