Randomly load a bookmark
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Random Bookmark ",
"version": "0.0.1",
"description": "Randomly load a bookmark",
"homepage_url": "https://www.randombookmark.com",
"icons": {
"48": "icons/dice.png",
"96": "icons/dice.png"
},
"permissions": [
"bookmarks",
"tabs"
],
"browser_action": {
"default_icon": "icons/dice.png",
"default_title": "Random Bookmark"
},
"background": {
"scripts": [
"background.js"
]
}
}