Search On Twitter
Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu
Search On Twitter란 무엇입니까?
Search On Twitter은(는) http://www.thetravisw.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu"입니다.
확장 프로그램 스크린샷
Search On Twitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Search On Twitter adds to the Right-Click context menu. If the selected text starts with "@", the option to open Twitter profile will be presented. If the selected does not begin with "@", then the option to search on Twitter will be presented. Source Code - https://github.com/travis-w/Search-On-Twitter
확장 프로그램 기본 정보
이름 | |
ID | dhpmpdpphfgejncefefmdhklfbliefkm |
공식 URL | https://chrome.google.com/webstore/detail/search-on-twitter/dhpmpdpphfgejncefefmdhklfbliefkm |
설명 | Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu |
파일 크기 | 9.53 KB |
설치 횟수 | 465 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-09-28 |
출시 날짜 | 2014-09-28 |
평점 | 3.71/5 총 7 개의 평점 |
개발자 | http://www.thetravisw.com |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search On Twitter", "description": "Adds 'Open Twitter Profile' and 'Search on Twitter' options to the context menu ", "version": "1.0", "manifest_version": 2, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "js\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/contentscript.js" ] } ] } |