Hamburger Menu

Replace the hamburger menu icon on various websites.

Hamburger Menuคืออะไร?

Hamburger Menu เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sarah Vessels และคุณลักษณะหลักของมันคือ "Replace the hamburger menu icon on various websites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hamburger Menu

ดาวน์โหลดไฟล์ส่วนขยาย Hamburger Menu ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    ]
}