Closed
Bug 1264239
Opened 10 years ago
Closed 9 years ago
Enable linking to Add-on Introduction page on UITour opened after install (learn more)
Categories
(Toolkit :: Add-ons Manager, defect)
Toolkit
Add-ons Manager
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: markus, Unassigned)
References
Details
(Whiteboard: [UI tour] triaged)
Attachments
(1 file)
235.72 KB,
image/png
|
Details |
Many add-ons open a Introduction page in a new tab right after being installed. This is potentially distracting the user from seeing the Firefox install-confirmation that informs them about where the add-on has been placed in the browser.
https://invis.io/UY6XLQY3V
To provide add-on developers with an option to show the introduction page to interested uses, but not force it on everyone, we want to offer them a link in the install confirmation: "learn more"
This is especially interesting for users new to add-ons, and therefor for discovery pane. Can we, as a first step, offer those add-ons a way to use that "learn more" link if installed via discovery pane?
Comment 1•10 years ago
|
||
The only way I could practically see this working is for the editor to manually insert a destination for the "learn more" link. But, I don't know of any way we could suppress the add-on from opening a new page.
Updated•9 years ago
|
Whiteboard: triaged
Target Milestone: mozilla48 → ---
![]() |
||
Updated•9 years ago
|
Whiteboard: triaged → [UI tour] triaged
Comment 2•9 years ago
|
||
Mark, you've got everything you need to implement this I believe?
Flags: needinfo?(mstriemer)
Comment 3•9 years ago
|
||
I have a version of the dialog working currently. I believe the only thing I need to complete it is the permissions issue with allowing access to the UITour API in about:addons which is tracked in bug 1281847.
For myself, here is the code to trigger it.
document.dispatchEvent(new CustomEvent('mozUITour', {
bubbles: true,
detail: {
action: 'showInfo',
data: {
target: '#archive_peers_community-browser-action',
icon: 'https://addons-dev-cdn.allizom.org/user-media/addon_icons/1/1865-64.png?modified=1460371219',
text: 'Click here to access Adblock Plus any time.',
title: 'Installed and added to toolbar',
buttons: [{label: 'Ok', callbackID: 'closeabp', style: 'bar-primary'}],
name: 'addon',
}
}
}));
Flags: needinfo?(mstriemer)
Comment 4•9 years ago
|
||
Based on bug 1308310 I think we should won't fix this.
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•