Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I made an in a WebExtension popup but it doesn't load up at the start. It only loads when we click on the addon's button in the menu bar.
What can I do to make it load up at the start of the browser?
It's not possible. It can't be done. Depending on what you need, you might want to consider a sidebar action:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/user_interface/Sidebars
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/sidebarAction
Instead of a popup.html file, you will have a sidebar.html file which is mentioned in manifest.json:
"sidebar_action": {
"default_title": "My sidebar",
"default_panel": "sidebar.html",
"default_icon": "sidebar_icon.png"
}
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
This post was edited and submitted for review 6 days ago.
Improve this question
I am looking for ways to display text on top of the background as an overlay for redhat linux. Catch is, I can't install any new softwares on the system. So probably best to use scripting. I tried playing around with gsettings and /usr/share/backgrounds/default.xml, but did not find anything tangible. Is there anyone out there who can help? Thanks
So far I have tried changing the background color by
Using editor modified override file in: /usr/share/glib-2.0/schemas/org.gnome.desktop.background.gschema.override
Added:
[org.gnome.desktop.background]
primary-color="#000000"
Run as a superuser: glib-compile-schemas /usr/share/glib-2.0/schemas/
Logout and login again.
By doing the above I have managed to change the background color. All I need now is to add a text such as 'My Name' to appear as an overlay on a background. I also want this text to be customized as the same machine will be used by different people and the text should be customized according to the account it has been logged into it as.
to add to the problem, I need the name to appear on top AND bottom of the screen.
I do understand I can just create different wallpapers for different account but then where is the challenge? :) .. Is it too naive for me to think this is possible?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 10 months ago.
Improve this question
Hello professionals. I'm new to android studio. I lost the studio header .how can I get this header again.
All you have to do is press CTRL+SHIFT+N, then it will open a menu, find where you see All, and then type Appearance. And then select Main menu, and your problem will be solved.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I'm using UFT 15 to automatize some Web GUI Tests using VB Script. I have to click on a WebCheckBox of a pop up but it doesn't work because when I used Record to click on the WebCheckBox, UFT pasted that line:
Browser("A").Window("B").WinObject("Internet Explorer_Server").Click
I understood that WinObject("Internet Explorer_Server") is a generic object.
Could someone help me?
It looks like your browser isn't correctly recognized by UFT, the object hierarchy should be something like: Browser("A").Page("B").WebElement("C").Click (where WebElement could be quite a few things like Link, WebButton etc.).
Check if UFT's agent is enabled in your browser (in this case IE).
During the first launch of IE you should have seen a toolbar like this:
If you didn't click Enable then, you should go to the "Gear icon" -> Manage Add-ons menu and enable the UFT addon:
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How we can use our browser as a notepad, and avoid using other tools?
It will give the flexibility to immediately take note of urls or other stuff at the same place!
Instead of using browser extensions like evernote or other tools like notepad/gedit etc, is there some way to write down notes or copy/paste contents in browser window?
This is quite interesting piece of info!
Just type the following in your browser address bar:
data:text/html, <html contenteditable>
And here you go, you are now ready to write in the window below!
Also you can mark it favourite and save as 'notepad utility' in your bookmarks!
For more info check here!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
files from the google.docs generally open in view mode. But after some additions in link, we can change the link to direct download.
I have given a docs link below . How can I turn it into a download link?
https://docs.google.com/viewer?a=v&pid=sites&srcid=ZGVmYXVsdGRvbWFpbnxoaWprbG1uMjN8Z3g6MjY2NWMxNjM1ZWYxNWNmYQ
You can try this.
Click on print Icon on the top-left, it will pop up printing controls on the left, then if you press ctrl+s , you can save it as PDF format. And also, this is not a good question for this site:)
EDIT
From here
How to Link to Files at Google Docs for Direct Download
...Google doesn't tell you this, as far as I know - so, if you want to link to a file at Google Docs for direct download you can use the following address scheme:
https://docs.google.com/uc?export=download&id=YourIndividualID
You can copy your individual file id from within the "Share..."-dialogue. Here you also need to put the share settings to "public" or to "anyone with the link"
a HTML example for this link to a pdf-file:
<a href="https://docs.google.com/uc?export=download&id=0B2wAunwURQNsNWU1NjcyOGMtYWI0Ni00MzQ5LTg3ZTAtOTc5ZjUwMmZiZDMy">
</a>
Online generating tool here.