Pimp your 'New Tab'
Pimp your 'New Tab' - open any website or URL!
什么是Pimp your 'New Tab'?
Pimp your 'New Tab'是由jimmyff开发的Chrome扩展程序,该扩展的主要功能是“Pimp your 'New Tab' - open any website or URL!”。
扩展截图
下载Pimp your 'New Tab'扩展crx文件
下载Pimp your 'New Tab'扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! ^_^
扩展基本信息
名称 | Pimp your 'New Tab' |
ID | bafonlnpjoogacbjiffcbadecdgamjgb |
官方URL | https://chromewebstore.google.com/detail/pimp-your-new-tab/bafonlnpjoogacbjiffcbadecdgamjgb |
简介 | Pimp your 'New Tab' - open any website or URL! |
文件大小 | 7.93 KB |
安装次数 | 158 |
当前版本 | 1.0.2 |
更新时间 | 2016-02-24 |
上架时间 | 2016-02-24 |
评分 | 4.10/5 共10次评分 |
开发者 | jimmyff |
付费类型 | free |
支持的语言 | 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" } |