Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Elementor Reloader",
"version": "1.0.0",
"description": "Detects a known Elementor TypeError on \/wp-admin\/post.php and clears cookies, reloads the page, and tracks time saved.",
"permissions": [
"cookies",
"tabs",
"storage"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Elementor Reloader",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/wp-admin\/post.php*",
"https:\/\/*\/wp-admin\/post.php*"
],
"js": [
"relay.js"
],
"run_at": "document_start"
},
{
"matches": [
"http:\/\/*\/wp-admin\/post.php*",
"https:\/\/*\/wp-admin\/post.php*"
],
"js": [
"detector.js"
],
"run_at": "document_start",
"world": "MAIN"
}
]
}