Random Bookmark
Open a random bookmark
Vad är Random Bookmark?
Random Bookmark är en Chrome-tillägg utvecklad av Feras Albaroudi, och dess huvudfunktion är "Open a random bookmark".
Tilläggsskärmbilder
Ladda ner Random Bookmark-förlängningens CRX-fil
Ladda ner Random 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
The folder to open a bookmark from as well as well as where to open the bookmark can be configured. Grundläggande Information om Tillägg
| Namn | |
| ID | eeoohjpijemgnlcegchbabgdbnikdcpd |
| Officiell webbadress | https://chromewebstore.google.com/detail/random-bookmark/eeoohjpijemgnlcegchbabgdbnikdcpd |
| Beskrivning | Open a random bookmark |
| Filstorlek | 2.1 MB |
| Antal Installationer | 168 |
| Aktuell Version | 1.2.1 |
| Senast Uppdaterad | 2023-05-09 |
| Publiceringsdatum | 2020-05-12 |
| Betyg | 4.00/5 Totalt 5 Betyg |
| Utvecklare | Feras Albaroudi |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/NeedsSoySauce/Random-Bookmark |
| Hjälpsida URL | https://github.com/NeedsSoySauce/Random-Bookmark |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Random Bookmark",
"version": "1.2.1",
"description": "Open a random bookmark",
"manifest_version": 3,
"permissions": [
"storage",
"bookmarks",
"alarms"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": {
"16": "images\/shuffle-gray\/16.png",
"32": "images\/shuffle-gray\/32.png",
"48": "images\/shuffle-gray\/48.png",
"128": "images\/shuffle-gray\/128.png"
}
},
"icons": {
"16": "images\/shuffle-gray\/16.png",
"32": "images\/shuffle-gray\/32.png",
"48": "images\/shuffle-gray\/48.png",
"128": "images\/shuffle-gray\/128.png"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
},
"shuffle": {
"description": "Shuffle"
},
"open-options": {
"description": "Open options"
}
}
} | |