How to Save Google Docs with Export Options Disabled?

Looking to Copy and Save Google Docs Files with View Only Permissions. Here is the Best Method to Download Export Protected Files Using Chrome Browser.

Google Docs offers the file owner the option to disable downloading, printing, and copying of the file. This means the Google Docs File Shared with restricted permissions can only be viewed and cannot be copied, edited, or downloaded. The protected Google Doc file is not easy to download or save.

If you wish to save the content of the protected doc file, there is a trick you must know. It is not as easy as hitting a button to download the file. We will use Chrome’s Dev Tools to get our hands on the restricted doc file.

Though the file is protected, the content still has to be stored inside the HTML code of the website to load the file. We will use this HTML to extract the Doc Content.

Export Options Disabled

This article may be a bit technical, and you may need a few attempts to save the view-only restricted Google Doc File successfully.

Download Restricted Google Docs Using the Chrome Extension

Download View-Only Google Docs (2025): Copy-Paste Protected *.docx File

Here is the simplest way to download the entire content from a doc file on which restriction on downloading the file has been enforced. Add the webpage screenshot extension by Fireshot. Capture the entire content of the protected doc file and save it as a PDF file.

You can then copy the content of the PDF file into a word processor app like MS Word or Notepad.  As a better alternative, I would suggest converting the PDF into a document file that you can directly open on MS Word.

Let me run you through all the steps.

  1. Open the Chrome browser.
  2. Go to Chrome webstore and search for the Fireshot extension to capture the entire screen.
    Search for Fireshot
  3. Once you find the extension shown in the screenshot, click on it to access its page.
  4. Press Add to Chrome.
    Add Fireshot to Chrome
  5. Next, press Add Extension to integrate the extension to Chrome.
    Add Extension
  6. Now, open the restricted doc file on Google Docs.
    Options to download, print and copy have been disabaled on this file
  7. On the Chrome toolbar, click the extensions icon.
  8. From the list of installed extensions, click on the Fireshot screen capture extension.
    Take Webpage Screenshot
  9. Select “Capture Entire Page” from the options the extension presents.
    Capture Entire Page
  10. After the contents of the protected document is captured, a new tab will open, prompting you to save the captured page as an image or save it as a PDF. Click on Save to PDF.
    Save PDF

Now, the entire content of the doc file with download restriction will download on your PC as a PDF file.

It is up to you whether you copy the PDF file content into MS Word or Google Doc.

  1. Open the downloaded PDF file.
  2. Select all its content and copy it.
  3. Open a new file in MS Word or Google Docs.
  4. Paste the content and format it as per your requirement.

You may also convert the PDF file to an MS Word file using any free online file converter.

  1. Go to any free online file converter.
  2. Upload the PDF of the restricted doc file generated using Fireshot.
    Select File to Convert to PDF to OCR Doc
  3. Convert the PDF to docx format.
    Convert PDF to Word
  4. Download the docx file to your PC.
    Download Converted Doc
  5. Open the docx file on MS Word.
    Download Docx file

This is the simplest and fastest way to capture the entire content of any doc file on which the original author has set download restrictions and access it by converting it into an ocx file.

Steps to Save the Download Protected Google Docs

Here are the Steps to Save or Download the Google Docs File with View Only Permissions on PC

  1. Open the Restricted Doc file and in the Chrome Browser.
  2. Now open Developer Console by pressing Ctrl + Shift + C for Windows or Cmd + Shift + C for Mac.
  3. Reload the page and under the Elements Tab look for the <div> tag that covers all the content in blue shade.
    Open Elements Tab
  4. Generally, you will find the <div> that covers the entire page with blue shade tag with ‘<div class=”app-container”>…</div>‘.
    Div_Container
  5. Now right click on the div container element and select Edit as HTML.
    Edit_as_HTML_Proctected_Doc
  6. Now the HTML box will open.
  7. Copy all the content from the container box.
    Copy_the_DIv_Container_Data
  8. Now open a new doc.
  9. Here again, open Dev Tools, reload the page and look for the <div> tag with <div class=”app-container”>…</div> that covers the entire page with blue shade.
  10. Again right-click on the div container element and select Edit as HTML.
    Edit_as_HTML_New_Doc
  11. Here paste the copied content, close the console. All the GDocs data will appear on the new doc created.
    Paste Copied Content
  12. Done! 😄
    All Data into new Doc with Images

Alternative Method to Copy Google Docs Using JavaScript Script

You again need to use Google Chrome Developer Console. The file is blocked using JavaScript code. Disable the JS and add a manual JS script to copy the Google Docs. This method was shared on Github.

  1. Open the protected GDoc using Chrome. Change the end of the document URL from `/edit` to `/mobilebasic`
    https://docs.google.com/document/d/1NVbFrAinfMK9p0WkXXqQDYFyxxxxcNeN9Yu6CbUaJdA/edit
    https://docs.google.com/document/d/1NVbFrAinfMK9p0WkXXqQDYFyxxxxcNeN9Yu6CbUaJdA/mobilebasic
  2. Scroll all the way down to the bottom to make sure that it is entirely loaded.
  3. Now open Developer Console by pressing Ctrl + Shift + C for Windows or Cmd + Shift + C for Mac.
    add_mobilebasics_to_url
  4. Open the Command Console [Ctrl+Shift+C for Windows & Cmd + Shift + C for Mac].
  5. Now, Search “javascript”, and select the option “Disable Javascript” by opening [Cmd/Ctrl+Shift+P].
    Disable_JS_in_Console
  6. Now click on the Console Tab and look for a small arrow marker.
    Paste_Code
  7. Here paste the JS code from below and hit enter.
    Paste_JS_Code
  8. Do not close the Dev Console and reload the page.
  9. Now you can close the Dev Tools and copy and from the document.
  10. Done!😀

function rtcScript() {
    document.oncontextmenu = null;
    document.onselectstart = null;
    document.onmousedown = null;
    document.onclick = null;
    document.oncopy = null;
    document.oncut = null;
    var elements = document.getElementsByTagName('*');
    for (var i = 0; i < elements.length; i++) {
        elements[i].oncontextmenu = null;
        elements[i].onselectstart = null;
        elements[i].onmousedown = null;
        elements[i].oncopy = null;
        elements[i].oncut = null;
    }
    function preventShareThis() {
        document.getSelection = window.getSelection = function() {
            return {isCollapsed: true};
        }
    }
    var scripts = document.getElementsByTagName('script');
    for (var i = 0; i < scripts.length; i++) {
        if (scripts[i].src.indexOf('w.sharethis.com') > -1) {
            preventShareThis();
        }
    }
    if (typeof Tynt != 'undefined') {
        Tynt = null;
    }
}
rtcScript();
setInterval(rtcScript, 2000);

Conclusion

Using Dev Tools, you can extract the View Only Protected Google Docs File and Save it as a Fresh Doc File. Follow the guide carefully. If you find it difficult to locate the div container tag, just reload the page and try again. I hope the post is helpful, do comment below for any assistance or support.

If you've any thoughts on How to Save Google Docs with Export Options Disabled?, then feel free to drop in below comment box. Also, please subscribe to our DigitBin YouTube channel for videos tutorials. Cheers!

Share
Nikhil Azza
Nikhil is a Tech Blogger who sometimes loves to write real-life lore. He has been writing content for the past 8 years, with over 1K+ articles written on Android, Mac, iOS, Social Media, Cloud Storage, Software, and General Tech. Know More

10 Responses

  1. Walker says:

    The mobilebasic option works 100%.

  2. Andrew says:

    A little struggling finding Command Console on Mac, it should be Cmd+Shift+P, not ‘C’. Just a little mistake.
    It worked terrifically. Thanks a lot!!

  3. Vanessa says:

    These options no longer work. 🙁

    • Nikhil says:

      I just test, and it works. I request you to try again.

  4. dfff says:

    will they find out ’bout it if i used these methods

    • Nikhil says:

      No! Your Identity is Safe

  5. Samantha says:

    I would like to know how to do it for Google Slides. Do you have a page for that?

    • Nikhil says:

      Will create a post soon!

Leave a Reply

Your email address will not be published. Required fields are marked *