Pimp your 'New Tab'
Pimp your 'New Tab' - open any website or URL!
Pimp your 'New Tab' là gì?
Pimp your 'New Tab' là một tiện ích mở rộng Chrome được phát triển bởi jimmyff, và tính năng chính của nó là "Pimp your 'New Tab' - open any website or URL!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pimp your 'New Tab'
Tải xuống các tệp mở rộng Pimp your 'New Tab' dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A super simple extension that allows you to customise your 'New Tab' page by setting it to redirect to a specific URL or website. I created this as the other New Tab redirect extensions all seem to be full of spyware! View & download the source code: https://github.com/jimmyff/chome-new-tab Permission explanation: The extension requires the 'Storage' permission to save your desired URL and the 'Tab' permission to change the URL of your 'New Tab' page. I could remove the tab permission and use the 'new tab override' method but if I did it this way, there would be no way to disable the custom page without disabling the whole extension. Also it would not put the cursor in the address bar. When Chrome adds functionality to allow temporary overrides I will change the implementation to support it. Happy pimpin! ^_^
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pimp your 'New Tab' |
ID | bafonlnpjoogacbjiffcbadecdgamjgb |
URL Chính Thức | https://chromewebstore.google.com/detail/pimp-your-new-tab/bafonlnpjoogacbjiffcbadecdgamjgb |
Mô tả | Pimp your 'New Tab' - open any website or URL! |
Kích Thước Tệp | 7.93 KB |
Số Lần Cài Đặt | 158 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2016-02-24 |
Ngày Phát Hành | 2016-02-24 |
Đánh Giá | 4.10/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | jimmyff |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon-128.png", "default_popup": "options.html" }, "description": "Pimp your 'New Tab' - open any website or URL!", "icons": { "128": "icon-128.png" }, "manifest_version": 2, "name": "Pimp your 'New Tab'", "options_page": "options.html", "permissions": [ "tabs", "storage" ], "version": "1.0.2" } |