Hamburger Menu
Replace the hamburger menu icon on various websites.
Hamburger Menu란 무엇입니까?
Hamburger Menu은(는) Sarah Vessels에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace the hamburger menu icon on various websites."입니다.
확장 프로그램 스크린샷
Hamburger Menu 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of seeing three bars for a menu or to indicate something is grabbable? No more! Now you can see an actual hamburger or hotdog. You can also right click elements on the page and choose to see a hamburger/hotdog there instead. Customizable! Choose between a mouthwatering hamburger or hotdog. With Hamburger Menu, the choice is yours. Change Log: Version 0.0.3: Fixed bug where you could hamburgerify something and an empty CSS selector would be saved. Better hamburgerification of images and Font Awesome icon overrides. Version 0.0.2: Adds a popup that lets you view your overrides for that host. Allows you to edit hamburger overrides on the options page and in the popup. Popup provides help for how to use the extension as well as linking to the options page. Version 0.0.1: Initial release. Provides ability to right-click elements on the page and make them display as a hotdog or hamburger. Has an options page to choose between hotdogs and hamburgers. Allows removal of custom overrides via options page. Automatically replaces particular icons from Font Awesome, Octicons, Glyphicons, Material Icons, Ionicons, Foundation, and Elusive with a hamburger or hotdog.
확장 프로그램 기본 정보
이름 | Hamburger Menu |
ID | eilghennaccfpohmdffhdpckacgdaohe |
공식 URL | https://chromewebstore.google.com/detail/hamburger-menu/eilghennaccfpohmdffhdpckacgdaohe |
설명 | Replace the hamburger menu icon on various websites. |
파일 크기 | 501 KB |
설치 횟수 | 304 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2016-06-19 |
출시 날짜 | 2016-06-19 |
평점 | 4.17/5 총 6 개의 평점 |
개발자 | Sarah Vessels |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/cheshire137/hamburger-menu |
도움말 페이지 URL | https://github.com/cheshire137/hamburger-menu/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hamburger Menu", "short_name": "Hamburger Menu", "description": "Replace the hamburger menu icon on various websites.", "version": "0.0.3", "permissions": [ "storage", "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "storage.js", "background.js" ] }, "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "Hamburger Menu Overrides" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "storage.js", "content.js" ] } ], "options_page": "options.html", "icons": { "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ "hotdog.png", "hamburger.png" ] } |