Lander - New Tab Page

Replace your stock new tab / landing page with one meant for power users. - Bookmarks page with tabs (each tab can have it's own…

Lander - New Tab Pageคืออะไร?

Lander - New Tab Page เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michaelbreyes และคุณลักษณะหลักของมันคือ "Replace your stock new tab / landing page with one meant for power users. - Bookmarks page with tabs (each tab can have it's own…"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lander - New Tab Page

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

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

                        Replace your stock new tab / landing page with one meant for power users.
- Bookmarks page with tabs (each tab can have it's own custom background image)
- A single bookmark can contain links to more than 1 website
- Image gallery with tabs and thumbnails
- Right-click a bookmark (or image) to open in an Incognito window
- Clipboard page that lets you add unlimited text fields
- Current weather conditions (you specify the city in settings)
- Movie poster art for current and upcoming movies
- Inline image editing via the Pixlr web editor

2.2.6 changes
Switched code to use React, improves responsiveness when multiple new tab pages are open.
Moved menu bar to hideable top bar.
Notes now has tabs and background colors that look similar to post-it notes.
Each page of the image gallery can be customized to allow images to be resized and positioned anywhere on page.
Added more shortcuts when highlighting text to track on UPS, Fedex, and USPS.
Changed movie sources from RottenTomatoes to TheMovieDb for better poster art.

2.1.10 changes
Fix for not being to find current UserId

2.1.3 changes
Fixed delay for closing the popup menu
When extension opens, press TAB then start typing to filter the bookmarks, press Enter to launch the first match
Shortcut keys when highlighting text then searching Rotten Tomatoes (Alt+T), Amazon (Alt+A), and Wikipedia (Alt+W)

2.1.1 changes
Fixed bug when scrolling down on bookmarks page and right-clicking an item.

2.1.0 changes
- Open a bookmark in a new tab, new window, or incognito.
- Highlight text on any website, then right-click. 3 new options were added to search for the highlighted text at Rotten Tomatoes, Amazon, and Wikipedia.
- When on the bookmarks page, click anywhere on the screen and start typing.  The bookmarks will filter based on your search term.  Press ESC to clear the search.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Lander - New Tab Page Lander - New Tab Page
ID eplmjegeebapecckddapanchloblaokp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lander-new-tab-page/eplmjegeebapecckddapanchloblaokp
คำอธิบาย Replace your stock new tab / landing page with one meant for power users. - Bookmarks page with tabs (each tab can have it's own…
ขนาดไฟล์ 6.07 MB
จำนวนการติดตั้ง 93
เวอร์ชันปัจจุบัน 2.4.0
อัปเดตครั้งล่าสุด 2015-08-22
วันที่เผยแพร่ 2015-08-22
คะแนน 3.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา michaelbreyes
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lander - New Tab Page",
    "version": "2.4.0",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "chrome_url_overrides": {
        "newtab": "index.html"
    },
    "page_action": {
        "default_icon": "images\/bookmark.png",
        "default_title": "Add to Lander",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*\/",
        "identity",
        "identity.email",
        "tabs",
        "",
        "storage",
        "unlimitedStorage",
        "contextMenus"
    ],
    "icons": {
        "16": "images\/bookmark.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "commands": {
        "search_rt": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Find on Rotten Tomatoes"
        },
        "search_amazon": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Find on Amazon"
        },
        "search_google": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Find on Google"
        },
        "search_wikipedia": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Find on Wikipedia"
        }
    }
}