Which manifest key is used to hold the text in the "Details" tab? - firefox-addon-webextensions

If you select an Add-on in about:addons you can see a "Details" tab that holds text describing the Add-on. Here is an example:
https://i.imgur.com/VYSnHz1.png
Which manifest key is used to hold this text? (Note, it's not the description key as that is used for "A short description of the extension".
UPDATE: So it seems this "Details" text is pulled from The Developer Hub page for the Add-on in question (the "Describe Add-on" section"). Question: I am only updating this text, not anything in the code of the Add-on. How do I "publish" this change so that it shows up in my browser in the Add-on page in about:addons? I don't see any way to do that in the Developer Hub.
Or do I need to upload a new version of the Add-on, even though I am not changing anything in the code?

Related

HOW TO CLICK LINK IN PAGE OF REACT-PDF

Description:
I've checked similar issues, but none of the provided solutions seem to work in this case. My assumption is that this has something to do with pdf document itself, appreciate if anyone could take a look.
Steps to reproduce
Here is the sandbox with the example
https://codesandbox.io/embed/gallant-thunder-x3o7v7?fontsize=14&hidenavigation=1&theme=dark
Expected behavior
Links are clickable. Please see the online demo https://projects.wojtekmaj.pl/react-pdf/
Actual behavior
Links are not clickable
Interesting fact, that google viewer does not open the links either (pages 4, 5), but if you download the document, links are working. I'm using default previewer on MacOS
Environment
React-PDF version: 5.7.2, same behaviour on 4.1.0
React version: 18.0.0, same on 16.4.0
Also, I used iframe and embed, and really it make link clickable but its not display pdf on safari IOS
The problem is you are using a "virtual PDF reader" (GoogleDocs/Mozilla PDF.js) which produces images and searchable text as separate layers, the link is there but it is the highlighted yellow zone not the blue underline text. also due to browser security I have to right click to open at my choice in new tab or new window (my choice would be save link as PDF for offline viewing).
In a true PDF viewer like Chrome embedded PDF Plugin or the users iFrame / offline viewer, the links would work perfectly. Again whichever way the user decides.

How to change the default action to "open in new tab" when clicked on an attachment in xpages?

I have an xpage with a "File Download" control in it, binded to a data source which is pretty basic. When its displayed and I click on an attachment in the list from a computer / laptop, it downloads it as expected (When you click on the downloaded thing in the bar below the browser, it opens the attachment in the appropriate application).
But when I use this feature from mobile (phone or a tablet), the attachment is opened in the same page directly. Only when I click on it for a longer period (I'm using an IPhone in this case), I have the option to "Open in New Tab" (as if I "right-clicked" in desktop).
Now what I want to do is, when I click on an attachment from mobile, I want the default action to open it in a new tab.
How can I do this?
This answer put me in the correct path but I'm not quite where I want to be.
This answer works when I extend the Bootstrap3_flat theme (which is the selected application theme in xsp.properties) and add the required code. Then when I use the file download control, attachments are opened in new tab by default.
But in xps.properties of the application, I am selecting "Mobile default" for the mobile theme. So in order to extend "Mobile default" I guess I have to extend "iphone" but when I try that, my application is not loaded correctly.
How can I extend "Mobile default" theme correctly for my application to load correctly?

How Embed Gist in Wagtail?

How to insert dynamic gist code in the middle of posts generated by Wagtail (Django Cms)?
I searched the documentation of wagtail but did not find anything that could help me automatically insert the github codes.
Gist is one of the built in content types supported by Wagtail's embedded content feature. Within a rich text field, editors can use the 'media' toolbar icon to enter the URL to the Gist page, and it will appear embedded in the rich text content. Within a StreamField, the developer can EmbedBlock to the set of available block types, and the editor will then be able to enter the Gist URL into that field.

How can I inspect page resources in Firefox?

In Chromium / Chrome I can use "Inspect element" to view a list of the current page's resources, including JS, images, videos. Basically, all files that have been downloaded in service of that page.
When I "Inspect element" in Firefox I can't find an equivalent. Am I missing it, or is there another way to access the list of files?
From the Tools menu, pick Page Info
In the Page Info window, select the Media tab
...the list of files downloaded for that page will appear under the Media tab.
In order to view resources like js or css files, you would select Network in the developer tools panel to open the Network Monitor. This will show all resources downloaded by the page (including images, media etc.)
From there you can narrow your search based on the type of resource you're looking for by selecting the appropriate tab at the top of the window. To inspect its contents, select the resource from the list and click the Response tab in the window that appears to the right.
On Windows, press 'F12' to open developer tools then select 'Network'. Under 'Network' select the filter labelled 'Images'. Reload your page and the images will be listed there along with their links. You can open them in a new tab and save them on your device.
After opening the Inspect Element console; Look for the Toolbox options at the TOP RIGHT CORNER (highlighted in BLUE as shown in the Picture link below)
Click on it and under the "Default Firefox Developer Tools" ; Click on the ones that you want to get displayed. (As per the link you gave for the Google Chrome that displayed the "Resources" - the equivalent in Firefox would be "Storage", as shown below
Toolbox Options--> Storage
Hope this helps :)

How to change the "Terms of Use" and "Privacy Statement" in DotNetNuke

How we can change text and wording of "Terms of Use" and "Privacy Statement" pages in Dot Net Nuke from admin?
Those texts are part of the resources files.
Go to menu "Admin > Languages" and click for edit its content for the site or the host.
Keep on the edition of the "GlobalResources" file.
Search for "MESSAGE_PORTAL_PRIVACY.Text" and "MESSAGE_PORTAL_TERMS.Text" and modify them.
If you modify the system version, a future upgrade of your DNN installation could overwrite your customization.
Host mode will impact all websites on the instance.
Site mode will impact only the current website.
I know this is old, but it might still help someone:
Tested with DNN 08.00.04 there are different methods to get a custom terms page without editing the language files (which feels a bit cumbersome)
To have your own /terms page you just create named "terms" in the navigation root.
DNN will show up your newly created page if you browse yoursite.com/terms
You can also redirect to another page from there (create a "link" page instead of "content" page, this in case you want to call your page AGB and have this in the url (yoursite.com/agb)
If you have https://dnnurlmanagement.codeplex.com/ installed you can simplifiy the steps above with just adding a "custom page URL" 301 redirect rule with "/terms" to any page you want to show up as /terms.
Go to site admin section here Admin -> Language -> edit host -> find your required field "Terms of use" and "Privacy". you can change here or edit it.

Resources