Code snippets on Google search results
Shows you a view into the search result so you won't have to click it.
Code snippets on Google search results란 무엇입니까?
Code snippets on Google search results은(는) odedhb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows you a view into the search result so you won't have to click it."입니다.
확장 프로그램 스크린샷
Code snippets on Google search results 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Are you too lazy to click on search results to see the actual: - Stack Overflow answer? - npm install instructions? - or the GitHub repo's README.md file? Yeah, me too. That's why I built this chrome extension. It shows you a view into the search result so you won't have to click it. Currently supported sites: - StackOverflow - GitHub - npm It's open source, I need help with development! https://github.com/odedhb/dev-snippets
확장 프로그램 기본 정보
이름 | |
ID | abphlmegjmjfdiipedjoofdfpdlnbbcn |
공식 URL | https://chrome.google.com/webstore/detail/code-snippets-on-google-s/abphlmegjmjfdiipedjoofdfpdlnbbcn |
설명 | Shows you a view into the search result so you won't have to click it. |
파일 크기 | 45.85 KB |
설치 횟수 | 369 |
현재 버전 | 0.0.7 |
최근 업데이트 | 2020-05-24 |
출시 날짜 | 2020-05-24 |
개발자 | odedhb |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/odedhb/dev-snippets |
도움말 페이지 URL | https://github.com/odedhb/dev-snippets/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Code snippets on Google search results", "version": "0.0.7", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "description": "Shows you a view into the search result so you won't have to click it.", "homepage_url": "https:\/\/github.com\/odedhb\/dev-snippets", "icons": { "16": "icons\/icon-16_x_16.png", "48": "icons\/icon-48_x_48.png", "128": "icons\/icon-128_x_128.png" }, "default_locale": "en", "page_action": { "default_icon": "icons\/icon-19_x_19.png", "default_title": "Dev snippets on google search results", "default_popup": "src\/page_action\/page_action.html" }, "content_scripts": [ { "css": [ "css\/style.css", "css\/highlight.stackoverflow.css" ], "js": [ "src\/inject\/inject.js", "js\/highlight.js", "js\/marked.min.js" ], "matches": [ "https:\/\/www.google.co.il\/*", "https:\/\/www.google.com\/*" ] } ], "background": { "scripts": [ "src\/background\/background.js" ], "persistent": false } } |