1
0
mirror of https://github.com/gamaio/lobli.git synced 2024-12-22 19:52:40 +00:00
lobli/lob.li crx/manifest.json
David Todd 704a68104d
Add new icons to the extension
This is for when the extension encounters something that makes it unable
to communicate to the server. It will disable until the user attempts to
shorten a link again
2014-09-18 21:09:56 -04:00

48 lines
1.0 KiB
JSON

{
"name": "lob.li link shortener",
"version": "0.0.1",
"manifest_version": 2,
"description": "lobli shortening and resolving without having to visit lob.li",
"homepage_url": "http://lob.li",
"browser_action": {
"default_icon": "icons/lobli-19.png",
"default_title": "lobli for Chrome"
},
"background": {
"page": "background.html",
"persistent": false
},
"permissions": [
"<all_urls>",
"tabs",
"clipboardWrite",
"contextMenus",
"notifications",
"storage"
],
"icons": {
"16": "icons/lobli-16.png",
"32": "icons/lobli-32.png",
"48": "icons/lobli-48.png",
"128": "icons/lobli-128.png"
},
"web_accessible_resources": [
"icons/lobli-16.png",
"icons/lobli-19.png",
"icons/lobli-32.png",
"icons/lobli-48.png",
"icons/lobli-128.png",
"icons/lobli-16-disabled.png",
"icons/lobli-19-disabled.png",
"icons/lobli-32-disabled.png",
"icons/lobli-48-disabled.png",
"icons/lobli-128-disabled.png"
],
"commands": {
"shortenTab": {
"suggested_key": { "default": "Alt+L" },
"description": "Shortens Current Tab"
}
}
}