Chrome Variable
'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time.
Chrome Variable란 무엇입니까?
Chrome Variable은(는) Shafin Siddique에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time."입니다.
확장 프로그램 스크린샷
Chrome Variable 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of copying the contents of your resume for every job application? 'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time. Never leave the browser for retrieving information ever again! How to use Chrome Variable: 1) Click the extension icon to access 'Chrome Variable.' 2) Use the form displayed to store variables. 3) In order to use the variable, simply go on any web page with a form, type "", followed by a period. 4) As soon as you enter the period, the variable name will be replaced by the value you set. Notes: - You can enter the period after any number of variables. - Make sure to wrap your variables in the"<>" tag. While the replace variable feature might not work on every website, Chrome Variable allows you to access variables and copy them to clipboard right from the home screen. You really never have to leave your browser for retrieving information ever again! We are constantly working to improve Chrome Variable. If you have any suggestions or feature requests, feel free to create an issue on our Github repository. https://github.com/shafinsiddique/chrome-variable.
확장 프로그램 기본 정보
이름 | Chrome Variable |
ID | eiepnmajeaiikmnepmkiejihnbfndekg |
공식 URL | https://chromewebstore.google.com/detail/chrome-variable/eiepnmajeaiikmnepmkiejihnbfndekg |
설명 | 'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time. |
파일 크기 | 25.63 KB |
설치 횟수 | 89 |
현재 버전 | 1.2 |
최근 업데이트 | 2021-03-20 |
출시 날짜 | 2020-09-02 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Shafin Siddique |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/shafinsiddique/chrome-variable |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Variable", "description": "'Chrome-Variable' is a chrome extension that allows you to define variables for text in chrome and reuse them anywhere at any time.", "version": "1.2", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ] } |