How to get gmail full screenshot - gmail

I'm trying to get full screenshot of HTML mail on Gmail.
Chrome extensions which like Screen Capture (by Google) does't work enough.
What should I do?

You'll not be able to take the complete screenshot of an email in Gmail default window. You need to take a different route to accomplish this i.e.
Click on the Print, it will open a new tab with Print dialogue.
Close/Cancel the Print dialogue (don't close the new tab).
Use Nimbus Screenshot or any other extension to take the screenshot of the HTML email.

Yes, Screen Capture by Google doesn't work for a long time. I recommend you Nimbus Screenshot. It is also a Chrome screenshot extension. And I just used it to get a full screenshot of HTML mail on Gmail. Hope it works for you.

I have tried everything with Nimbus but it simply wont work. Fragment Area takes the entire screenshot but only the visible part is saved rest image is blank.
Instead try clicking on the 'Print' icon on the upper right corner of your mail and save it as PDF.

Related

How to take screenshot of a tab in chrome extension

I am adding screenshot support to my extension, I want to take screenshot of a tab when a specific event is triggered, for example, a url is accessed. Now I am able to take screenshot of current tab using chrome.tabs.capturevisibletab, but the problem is that the event can be triggered by a tab that is not currently visible. So instead of visible tab, how can I take screenshot of any specific tab?
The method name is clear: capturevisibletab.
You can put the focus on the tab you want to snapshot, invoke the method and the restore the focus on the previous tab though.
You will need to add the <all_urls> permission in your manifest file.

How to take screenshot of a whole webpage from browser in a single image

In lots of place i saw that people using long screenshot of a full webpage for presentation. I tried with snipping tool but i am not able to take screenshot of whole webpage in a single image. I want to know that how i can take long screenshot from browser like this
If you are using Google Chrome then this answer will be beneficial for you.
Just follow some simple step to take long screenshot of a webpage.
Step 1: Click the three dots, point to “More Tools,” then click on “Developer Tools.” Alternatively, you can press Ctrl+Shift+I on Windows or ⌘+Shift+I on Mac to open the Developer Tools pane.
Step 2: In the top right corner of the pane, click the three dots icon, then click “Run Command.” Alternatively, press Ctrl+Shift+P on Windows and ⌘+Shift+P on Mac.
Step 3: In the command line, type “Screenshot,” then click “Capture full-size screenshot” from the list of commands available.
The image should save automatically, but if you’re prompted to save the screenshot, select a destination on your computer, then click “Save.”
Note : This feature is ideal on websites with text-based content opposed to web apps, as it could potentially only capture the viewable screen.
For more descriptive answer go through this link
You can use this free Screen Capture tool at CtrlQ.org.
You just need to put the url of the page of which you want to take the screenshot.
For example, Here is a screenshot of your question
You can use Awesome screenshot. It's extension is also easily available for chrome. Just add it to chrome and you will have option to take screenshot as you want. Here is the link.
You can click on capture entire page option as here in the screenshot:

VBA Insert .csv from website, .csv not in url

I am trying to figure out if there is a way with VBA to download the .csv file at the bottom left of the screen named "Download" at this link:
http://www.redfin.com/homes-for-sale#!excl_ss=true&market=socal&max_price=300000&min_price=50000&num_baths=1.0&num_beds=1&region_id=11203&region_type=6&time_on_market_range=30-&uipt=2&v=8
The .csv doesn't appear to be attached to a URL, which I know how to import, but I can't figure this out. Any help would be appreciated.
Matt
Try this URL:
http://www.redfin.com/stingray/do/gis-search?market=socal&region_id=11203&region_type=6&excl_ss=true&hoa=&max_listing_approx_size=&max_num_beds=&max_parcel_size=&max_price=300000&max_year_built=&min_listing_approx_size=&min_parcel_size=&min_price=50000&min_year_built=&num_baths=1.0&num_beds=1&open_house=&pkg=-&rd=&sf=1%2C2%2C3&sold_within_days=&status=1&time_on_market_range=30-&uipt=2&v=8&num_homes=500&sp=t&al=1&render=csv
There is actually a URL, it's just hidden and is accessed via some JavaScript Code.
In general, if you're wondering which URL is being used, try the following:
In Chrome:
Press Ctrl-Shift-J; this should bring up the debug console.
Click on a button on the bottom left to undock the debug console for convenience; it should now be in a separate window.
Go to 'Network' tab.
On the website, click the link to download CSV file.
Watch for new items appearing in the "Network" tab. One of them is likely the request to download the CSV file. Try right-clicking on it, and selecting "Open in a new tab". If you end up with the CSV file download dialog, then that's the URL you were looking for.
In Firefox:
Install FireBug plug-in, and do something similar to Chrome.
Of course it does:
http://www.redfin.com/stingray/do/gis-search?market=socal&region_id=11203&region_type=6&excl_ss=true&hoa=&max_listing_approx_size=&max_num_beds=&max_parcel_size=&max_price=300000&max_year_built=&min_listing_approx_size=&min_parcel_size=&min_price=50000&min_year_built=&num_baths=1.0&num_beds=1&open_house=&pkg=-&rd=&sf=1%2C2%2C3&sold_within_days=&status=1&time_on_market_range=30-&uipt=2&v=8&num_homes=500&sp=t&al=1&render=csv
You can find the URL by using the Developer Tools of IE, like so:
Open the website and press F12
In the window that appears (Developer Tools), select the Pointer Icon
After selecting the Pointer Icon, click the Download Link on the website
In the Developer Tools window you will notice a lot of HTML appears with a line selected; this line contains the link to the CSV.
Select the text in the downloadCsv function within that line: list.downloadCsv('...text to select...')
Add the copied text after http://www.redfin.com in the URL.

Link functionality in Google Chrome extensions

How do you enable hyperlinks to be clickable within a chrome extension? Do you have to create an event as described here? I'm outputting a list of urls within a popout page, and while the html output is correct, nothing happens when I click them.
Yeah, you do because a popup is like a page I guess so you have to use createTab in an onclick event.
Change your output to something like this....
Bunyips!
...dont forget to add tabs to your permissions in the manifest.
http://code.google.com/chrome/extensions/tabs.html
It looks like a straight forward thing. you just use link to insert a link into page.
you might want to paste the source code maybe there is something that would help.

Hyperlink that opens in a new tab but retain focus on the current/parent page

How do you format HTML A tag (when clicked) to make any browser to open it in a new tag, while retaining the focus on the current/parent page?
I know in Firefox, there is an option that says 'When I Open a link in a new tab, switch to the new tab immediately' .. but I want the opposite of this. When a new tab is opened, do not switch. Regardless I check or uncheck this option, it still behaves as I described above.
Anybody faced this before?
Cheers and thanks in advance for your answers,
Lasker
This is a browser setting and you cannot override this from your code and the main thing is
Don't do this.

Resources