Traviz
Find all elements with a specific style on any website
Traviz란 무엇입니까?
Traviz은(는) Governorfancypants에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find all elements with a specific style on any website"입니다.
확장 프로그램 스크린샷
Traviz 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Traviz Find all elements with a specific style and or selector on any website. This tool allows you to find all elements on a page with a specific style and/or selector of your choosing. You decide which CSS property, the value for that property and/or with which selector, to search for. You can use these operators: not equal to ( ! ), greater than ( > ), less than ( < ) and approximately equal to ( ~ ) or none for exact math. A background color, either random or not, will be assigned to every matching element and a list with metadata and corresponding background color can be found in the container to the left. Hover the items in the list to display a frame on the corresponding element. Click an item in the list to scroll the corresponding element into view. NOTE: Searching for specified values will not work on cross-origin linked stylesheets or local sites. Contribute or leave suggestions at https://github.com/GovernorFancyPants/traviz-chrome-ext Version history: 0.5.0 - Selector search, combined input fields, approximate search, random color on or off 0.4.1 - Bug fixes 0.4.0 - Implemented search for any property and value 0.1.1 - Bug fixes 0.1.0 - First release
확장 프로그램 기본 정보
이름 | Traviz |
ID | jbcpaikilmgnepceoigppdimofkkaaaj |
공식 URL | https://chromewebstore.google.com/detail/traviz/jbcpaikilmgnepceoigppdimofkkaaaj |
설명 | Find all elements with a specific style on any website |
파일 크기 | 85.43 KB |
설치 횟수 | 101 |
현재 버전 | 0.5 |
최근 업데이트 | 2014-10-17 |
출시 날짜 | 2014-10-17 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | Governorfancypants |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/GovernorFancyPants/traviz-chrome-ext |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Traviz", "description": "Find all elements with a specific style on any website", "version": "0.5", "author": "Governorfancypants", "icons": { "16": "traviz-icon-16x16.png", "48": "traviz-icon-48x48.png", "128": "traviz-icon-128x128.png" }, "browser_action": { "default_icon": { "19": "traviz-icon-19x19.png", "38": "traviz-icon-38x38.png" }, "default_title": "Traviz", "default_popup": "popup.html" }, "permissions": [ "activeTab", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "web_accessible_resources": [ "traviz.js" ] } |