Publish easily to Wordpress from any website
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",
"name": "Wordpress Publisher",
"description": "Publish easily to Wordpress from any website",
"manifest_version": 3,
"version": "1.1.0",
"icons": {
"16": "icons/icon-16x16.png",
"48": "icons/icon-48x48.png",
"128": "icons/icon-128x128.png"
},
"permissions": [
"storage"
],
"host_permissions": [],
"action": {
"default_title": "Wordpress Publisher"
},
"commands": {
"toggle-sidebar": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Toggle the Wordpress sidebar"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"css": [
"assets/content.css"
],
"js": [
"my-content-script.js"
]
}
],
"options_ui": {
"page": "www/index.html#/options",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"*://*/*"
]
}
],
"short_name": "Wordpress Publisher"
}