You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
696 B
27 lines
696 B
1 month ago
|
{
|
||
|
"author": "Gregory Leeman",
|
||
|
"background": {
|
||
|
"scripts": [ "background.js" ]
|
||
|
},
|
||
|
"content_scripts": [
|
||
|
{
|
||
|
"js": [ "jquery.min.js", "main.js" ],
|
||
|
"css": [ "style.css" ],
|
||
|
"matches": [ "https://workflowy.com/*" ],
|
||
|
"run_at": "document_end"
|
||
|
}
|
||
|
],
|
||
|
"browser_action": {
|
||
|
"default_icon": "icon.png",
|
||
|
"default_popup": "popup.html"
|
||
|
},
|
||
|
"icons": {
|
||
|
"128": "icon128.png"
|
||
|
},
|
||
|
"description": "Helper scripts and styling for WorkFlowy",
|
||
|
"manifest_version": 2,
|
||
|
"name": "Workflowy Helper",
|
||
|
"permissions": [ "contextMenus", "clipboardWrite", "activeTab", "https://workflowy.com/*" ],
|
||
|
"version": "1.0"
|
||
|
}
|