Mercurial > addons > firefox-addons > feed-preview
comparison manifest.json.in @ 54:ede87e1004f9
Fix issues with feed detection
Query the feed probe content script for available feeds from the background
script instead of making the content script message the background script.
This solves a race condition between the message from the content script
sending any feeds associated with the current document and the tab's status
"complete" event signaling that a new document has been loaded and hiding
the page action. Sometimes that event would be triggered after the message
from the content script and thus hide the page action again. In addition,
navigating back to a previously visited page might not cause a reload which
means that the content script would not send a message if there were feeds
associated with the current document.
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Thu, 26 Sep 2019 23:11:18 +0200 |
parents | 38b20de704a0 |
children |
comparison
equal
deleted
inserted
replaced
53:7e1a2357b8c5 | 54:ede87e1004f9 |
---|---|
28 "page": "background.html" | 28 "page": "background.html" |
29 }, | 29 }, |
30 "content_scripts": [ | 30 "content_scripts": [ |
31 { | 31 { |
32 "matches": [ "http://*/*", "https://*/*", "file:///*" ], | 32 "matches": [ "http://*/*", "https://*/*", "file:///*" ], |
33 "js": [ "content_scripts/feed-probe.js" ] | 33 "js": [ "content_scripts/feed-probe.js" ], |
34 "run_at": "document_end" | |
34 } | 35 } |
35 ], | 36 ], |
36 "web_accessible_resources": [ | 37 "web_accessible_resources": [ |
37 "web_resources/xhtml-to-html.xsl", | 38 "web_resources/xhtml-to-html.xsl", |
38 "web_resources/images/*.svg", | 39 "web_resources/images/*.svg", |