0% found this document useful (0 votes)
195 views2 pages

Script Hacker Monnilopi6

The document contains CSS and JavaScript links and code for styling and functionality of a New Tab page in the Chrome browser. It includes sections for custom backgrounds, logos/doodles, a search bar, and links/divs for things like animations, configurations and utilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
195 views2 pages

Script Hacker Monnilopi6

The document contains CSS and JavaScript links and code for styling and functionality of a New Tab page in the Chrome browser. It includes sections for custom backgrounds, logos/doodles, a search bar, and links/divs for things like animations, configurations and utilities.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

doctype html>
<html lang="fr" dir="ltr">
<!-- Copyright 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<head>
<link rel="stylesheet" href="chrome-search://local-ntp/animations.css"></link>
<link rel="stylesheet" href="chrome-search://local-ntp/local-ntp-
common.css"></link>
<link rel="stylesheet" href="chrome-search://local-ntp/customize.css"></link>
<link rel="stylesheet" href="chrome-search://local-ntp/doodles.css"></link>
<link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link>
<link rel="stylesheet" href="chrome-search://local-ntp/theme.css"></link>
<link rel="stylesheet" href="chrome-search://local-ntp/voice.css"></link>

<meta http-equiv="Content-Security-Policy"
content="object-src 'none';child-src chrome-search://most-visited/
https://*.google.com/ ;script-src 'strict-dynamic' 'sha256-
1+GSDjMMklBjZY0QiWq+tGupCvajw4Xbn46ect2mZgM=' 'sha256-
2mX1M62Fd0u8q0dQY2mRsK5S1NS9jJuQAvyE8tD0dkQ=' 'sha256-
EtIKSV82ixJHE3AzqhoiVbUGKG+Kd8XS0fFToow29o0=' 'sha256-
QSyFltV9X3gkyBrg+SMfKvZNXmqPQc6K4B6OYhTuXmw=' 'sha256-
ANdtIo91Yk/zh1YKZ+IXKP1pb00awOjEFMAUld02F6A=' 'sha256-
CbH+xPsBKQxVw5d9blISLDeuMSe1M+dJ4xfArFynIfw=' 'sha256-
lA+EURA/fC0TZq1ATYZvxIQHBc9iTAaBcI+dFMmTn9I=' 'sha256-
r8M35L32RquDK8jFp/tROc74JLQUl2lsS/eNENiX+gw=';">
<script src="chrome-search://local-ntp/assert.js"
integrity="sha256-2mX1M62Fd0u8q0dQY2mRsK5S1NS9jJuQAvyE8tD0dkQ="></script>
<script src="chrome-search://local-ntp/animations.js"
integrity="sha256-1+GSDjMMklBjZY0QiWq+tGupCvajw4Xbn46ect2mZgM="></script>
<script src="chrome-search://local-ntp/config.js"
integrity="sha256-r8M35L32RquDK8jFp/tROc74JLQUl2lsS/eNENiX+gw="></script>
<script src="chrome-search://local-ntp/customize.js"
integrity="sha256-EtIKSV82ixJHE3AzqhoiVbUGKG+Kd8XS0fFToow29o0="></script>
<script src="chrome-search://local-ntp/doodles.js"
integrity="sha256-QSyFltV9X3gkyBrg+SMfKvZNXmqPQc6K4B6OYhTuXmw="></script>
<script src="chrome-search://local-ntp/local-ntp.js"
integrity="sha256-ANdtIo91Yk/zh1YKZ+IXKP1pb00awOjEFMAUld02F6A="></script>
<script src="chrome-search://local-ntp/utils.js"
integrity="sha256-CbH+xPsBKQxVw5d9blISLDeuMSe1M+dJ4xfArFynIfw="></script>
<meta charset="utf-8">
<meta name="google" value="notranslate">
<meta name="referrer" content="strict-origin">
</head>
<body>
<div id="custom-bg"></div>
<div id="custom-bg-preview"></div>
<!-- Container for the OneGoogleBar HTML. -->
<div id="one-google"></div>

<div id="ntp-contents">
<div id="logo">
<!-- The logo that is displayed in the absence of a doodle. -->
<div id="logo-default" title="Google"></div>
<!-- Logo displayed when theme prevents doodles. Doesn't fade. -->
<div id="logo-non-white" title="Google"></div>
<!-- A doodle, if any: its link and image. -->
<div id="logo-doodle">
<div id="logo-doodle-container">
<div id="logo-doodle-wrapper">
<button id="logo-doodle-button">
<img id="logo-doodle-image" tabindex="-1"></img>
</button>
</div>
</div>
<iframe id="logo-doodle-iframe" scrolling="no"></iframe>
</div>
</div>

<div id="fakebox-container" hidden>


<div id="fakebox">
<div class="search-icon"></div>
<div id="fakebox-text"></div>
<input id="fakebox-input" autocomplete="off" tabindex="-1" type="url"
aria-hidden="true">
<div id="fakebox-cursor"></div>
<button id="fakebox-microphone" class="microphone-icon" hidden></button>
</div>
</div>

<div id="realbox-container" >

You might also like