My Style
Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.
My Style란 무엇입니까?
My Style은(는) Karthik Viswanathan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits."입니다.
확장 프로그램 스크린샷
My Style 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Usage: You may dislike a given site's design and want to add your own touch--that is, your own style--to make it aesthetically pleasing. After installing the extension, visit the site (e.g. techcrunch.com) and hit control + m. You should see a textarea to the right of the browser window. Insert your custom CSS into it and view the results. This CSS will be reinserted upon revisiting the site, thereby saving your styles. Pressing control + m once more will hide the textarea, but your contents will still be retained. See https://github.com/karthikv/my-style (scroll down) for an example. To speed up the process of styling, if you hold alt while clicking an element, a selector for that element will automatically be appended to the textarea editor. With this, you can circumvent the time it takes to inspect the element to find how to target it. How it Works: My Style is quite simple. It inserts a textarea into the page, looks for changes to the textarea's contents, and updates a dynamically inserted style tag appropriately. My Style employs local storage to make CSS changes persistent. It uses simple technologies for a simple result. Icon made by Freepik (https://www.freepik.com/) from FlatIcon (http://www.flaticon.com)
확장 프로그램 기본 정보
이름 | My Style |
ID | ljdhjpmbnkbengahefamnhmegbdifhlb |
공식 URL | https://chromewebstore.google.com/detail/my-style/ljdhjpmbnkbengahefamnhmegbdifhlb |
설명 | Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits. |
파일 크기 | 5.24 KB |
설치 횟수 | 2,953 |
현재 버전 | 0.3 |
최근 업데이트 | 2019-01-20 |
출시 날짜 | 2019-01-19 |
평점 | 3.91/5 총 75 개의 평점 |
개발자 | Karthik Viswanathan |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/karthikv/my-style |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "My Style", "description": "Insert custom CSS into pages, immediately see the visual results, and have that CSS persist for future visits.", "version": "0.3", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "my-style.css" ], "js": [ "my-style.js" ], "run_at": "document_start" } ] } |