Custom Stylesheet & Script
Inserts a custom stylesheet and script into every web page.
Custom Stylesheet & Script란 무엇입니까?
Custom Stylesheet & Script은(는) https://rufflewind.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inserts a custom stylesheet and script into every web page."입니다.
확장 프로그램 스크린샷
Custom Stylesheet & Script 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is simple extension that inserts custom JavaScript and CSS code into each web page, allowing you to modify the way it behaves and looks. The default installation does nothing. You'll have to provide the script and stylesheet yourself. An example can be found here: https://github.com/Rufflewind/chrome_script/tree/master/example To edit the script and stylesheet, go to chrome://extensions and click "Options" under "Custom Stylesheet & Script". The text areas in the "Options" tab will automatically save as you edit. Existing pages are not affected until refreshed. Note: jQuery NOT included anymore as of 2.0.0. Bug reports: https://github.com/Rufflewind/chrome_script/issues Changelog: https://github.com/Rufflewind/chrome_script/releases
확장 프로그램 기본 정보
이름 | Custom Stylesheet & Script |
ID | hojkciooaohipljgobfikbkjcehockld |
공식 URL | https://chromewebstore.google.com/detail/custom-stylesheet-script/hojkciooaohipljgobfikbkjcehockld |
설명 | Inserts a custom stylesheet and script into every web page. |
파일 크기 | 13.94 KB |
설치 횟수 | 833 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2019-07-16 |
출시 날짜 | 2019-07-15 |
평점 | 3.57/5 총 14 개의 평점 |
개발자 | https://rufflewind.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Rufflewind/chrome_script |
도움말 페이지 URL | https://github.com/Rufflewind/chrome_script/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Custom Stylesheet & Script", "description": "Inserts a custom stylesheet and script into every web page.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage", "*:\/\/*\/" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "commands": { "options": { "description": "Open options" } } } |