New tab page bookmarks
Override the new tab page with the bookmarks.
New tab page bookmarksとは何ですか?
New tab page bookmarksはhttps://www.robertoentringer.comによって開発されたChromeの拡張機能で、その主な機能は「Override the new tab page with the bookmarks.」です。
拡張機能のスクリーンショット
New tab page bookmarks拡張機能のCRXファイルをダウンロード
New tab page bookmarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension shows the bookmarks overview when opening a new tab in Chrome. You can get the full source code of extension on GitHub : https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers 🚀 New !!! Support dragging and dropping to change the order.
拡張機能の基本情報
名前 | |
ID | jafnapncbaamdiooljaibpebonjpgffe |
公式URL | https://chromewebstore.google.com/detail/new-tab-page-bookmarks/jafnapncbaamdiooljaibpebonjpgffe |
説明 | Override the new tab page with the bookmarks. |
ファイルサイズ | 17.56 KB |
インストール数 | 29 |
現在のバージョン | 0.3 |
最終更新日 | 2019-05-28 |
公開日 | 2019-05-28 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://www.robertoentringer.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers |
ヘルプページのURL | https://github.com/robertoentringer/chrome-ext-ntp-bookmarkers/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New tab page bookmarks", "description": "Override the new tab page with the bookmarks.", "version": "0.3", "incognito": "split", "chrome_url_overrides": { "newtab": "ntp.html" }, "browser_action": { "default_title": "Open new tab pabe", "default_icon": "icons\/icon32.png" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "src\/icons\/*.png" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "bookmarks", "storage", "topSites", "chrome:\/\/favicon\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |