This Bookmarker can be used to bookmark webpages to your start.me page while you surf - start.me
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": 3,
"name": "__MSG_APP_NAME__",
"short_name": "__MSG_APP_SHORT_NAME__",
"description": "__MSG_APP_DESCRIPTION__",
"version": "7.3.0",
"author": "start.me",
"homepage_url": "https://start.me",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"32": "icons/icon32.png",
"38": "icons/icon38.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"omnibox": {
"keyword": "me"
},
"default_locale": "en",
"offline_enabled": false,
"incognito": "split",
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"options_ui": {
"page": "popup.html#options",
"browser_style": true,
"open_in_tab": false
},
"action": {
"default_icon": {
"19": "icons/icon19.png",
"38": "icons/icon38.png"
},
"default_title": "__MSG_ADD_TO_STARTME__",
"default_popup": "popup.html",
"browser_style": false
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
},
"description": "__MSG_ADD_TO_STARTME__"
},
"open_startme_homepage": {
"suggested_key": {
"default": "Alt+H",
"mac": "Alt+H"
},
"description": "__MSG_OPEN_STARTME_HOMEPAGE__"
}
},
"minimum_chrome_version": "88",
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"optional_permissions": [
"bookmarks",
"tabs"
],
"host_permissions": [
"https://start.me/"
],
"externally_connectable": {
"ids": [
"*"
],
"matches": [
"*://localhost/*",
"*://*.start.me/*",
"*://*.startme.com/*"
]
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"welcome.html",
"import.html",
"options.html"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}