Html Duplicator
Html Duplicator
Html Duplicator란 무엇입니까?
Html Duplicator은(는) Egret에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Html Duplicator"입니다.
확장 프로그램 스크린샷
Html Duplicator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to automatically generate HTML/CSS code for any element on any website so you can modify and integrate the element in your own projects easily! Instructions :- 1) Visit any web page on the internet. 2) Hold down the Alt key on your keyboard and move your mouse cursor over any HTML element on the page to highlight it. 3) Release Alt key 4) Click the "Generate Code" button to generate the HTML/CSS code of the highlighted element. 5) Copy-Paste the code into your own projects!
확장 프로그램 기본 정보
이름 | Html Duplicator |
ID | fmbkmjnbplcdbalpabgldhfnjpndmjln |
공식 URL | https://chromewebstore.google.com/detail/html-duplicator/fmbkmjnbplcdbalpabgldhfnjpndmjln |
설명 | Html Duplicator |
파일 크기 | 76.73 KB |
설치 횟수 | 24 |
현재 버전 | 2022.10.15 |
최근 업데이트 | 2022-10-14 |
출시 날짜 | 2022-10-02 |
개발자 | Egret |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "author": "Html Duplicator", "background": { "service_worker": "server.js" }, "content_scripts": [ { "css": [ "style.css" ], "js": [ "jquery.min.js", "client.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_end" } ], "description": "Html Duplicator", "manifest_version": 3, "minimum_chrome_version": "88", "name": "Html Duplicator", "icons": { "16": "icon.png", "24": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "action": { "default_title": "Html Duplicator", "default_popup": "popup.html" }, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2022.10.15", "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "assets\/*" ] } ] } |