Bookmark
Get bookmarks in your new tab
Vad är Bookmark?
Bookmark är en Chrome-tillägg utvecklad av Desert Digital LLC, och dess huvudfunktion är "Get bookmarks in your new tab".
Tilläggsskärmbilder
Ladda ner Bookmark-förlängningens CRX-fil
Ladda ner Bookmark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
★ 𝗪𝗵𝘆 𝗶𝘀 𝘁𝗵𝗶𝘀 𝗲𝘅𝘁𝗲𝗻𝘀𝗶𝗼𝗻 𝘂𝘀𝗲𝗳𝘂𝗹 𝗳𝗼𝗿 𝘆𝗼𝘂? This is a free add-on for Chrome Browser where the primary target is to bookmark your favorite sites in the new tab. The extension will set your Chrome new tab to that provided by the service with web search by Microsoft Bing. ★ How to install: ✓ By clicking on the Add to Chrome button. ✓ By installing the extension, you agree to the EULA and Privacy Policy. Please note that the use of the search feature within the new tab extension will be powered by Microsoft Bing. ✓ You may remove or disable this extension anytime. ✓ Review our Privacy Policy: https://www.desertdigitalllc.com/privacy-policy ✓ Review our Terms of Service: https://www.desertdigitalllc.com/terms-and-conditions There is also a Digital Clock in the New tab where you can check your current location time in a 12-hours/ 24-hour format with a date according to your preference. ★ New tab 𝗳𝗲𝗮𝘁𝘂𝗿𝗲𝘀: ✓ Get bookmarks in your new tab of the browser. ✓ Change the background image of the new tab - powered by Unsplash. ✓ Toggle time in 12/24 hour format. ✓ Uninstall anytime easily from the new tab. ✓ Search desired information. ★ Images provided by: ✓ https://unsplash.com/ 𝗙𝗶𝗻𝗱 𝗺𝗼𝗿𝗲 𝗶𝗻𝗳𝗼𝗿𝗺𝗮𝘁𝗶𝗼𝗻 𝗮𝘁: https://www.desertdigitalllc.com 𝗦𝘂𝗽𝗽𝗼𝗿𝘁: If you have any questions, we are happy to help – just drop us a line at [email protected]
Grundläggande Information om Tillägg
Namn | Bookmark |
ID | pnhhdeomfncehpmlggjpkcnladnkanec |
Officiell webbadress | https://chromewebstore.google.com/detail/bookmark/pnhhdeomfncehpmlggjpkcnladnkanec |
Beskrivning | Get bookmarks in your new tab |
Filstorlek | 1.24 MB |
Antal Installationer | 67 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2023-01-25 |
Publiceringsdatum | 2021-04-12 |
Utvecklare | Desert Digital LLC |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://www.desertdigitalllc.com/privacy-policy |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bookmark", "version": "1.3", "description": "Get bookmarks in your new tab", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/bookmark\/pnhhdeomfncehpmlggjpkcnladnkanec", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.longhorn-innovations.com\/bookmarks\/" ], "content_scripts": [ { "all_frames": true, "js": [ "js\/content_script_idle.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle" } ], "action": { "default_icon": { "16": "images\/bd-16.png", "32": "images\/bd-32.png", "48": "images\/bd-48.png", "128": "images\/bd-128.png" } }, "icons": { "16": "images\/bd-16.png", "32": "images\/bd-32.png", "48": "images\/bd-48.png", "128": "images\/bd-128.png" }, "chrome_url_overrides": { "newtab": "landing.html" } } |