mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-11 08:55:23 +03:00
3a859ef585
link-server-hook exposes (parts of) the link-store over eyre, on the condition that the client is authenticated as the host ship. link-webext as committed is a very minimal web extension. When its toolbar button is clicked, it saves the current webpage to /private in the link-store. In the future, this should support choosing a target to save to, highlighting already-saved pages, and many other features.
39 lines
714 B
JSON
Executable File
39 lines
714 B
JSON
Executable File
{
|
|
"manifest_version": 2,
|
|
"name": "link",
|
|
"description": "Urbit Link",
|
|
"version": "0.0.0",
|
|
"icons": {
|
|
"64": "icons/icon.png"
|
|
},
|
|
"browser_action": {
|
|
"default_icon": {
|
|
"64": "icons/icon.png"
|
|
},
|
|
"todo__default_popup": "browserAction/index.html",
|
|
"default_title": "link"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background.js",
|
|
"storage.js"
|
|
]
|
|
},
|
|
"options_ui": {
|
|
"page": "options/index.html"
|
|
},
|
|
"web_accessible_resources": [
|
|
"src/options/options.html"
|
|
],
|
|
|
|
"permissions": [
|
|
"storage", // storing config
|
|
"activeTab" // viewing current page url & title
|
|
],
|
|
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "link-webext@tlon.io"
|
|
}
|
|
}
|
|
} |