mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* Ignores archived samples * Uses eslint/recommended rules * Runs prettier and eslint (including --fix) pre-commit via husky * Adds new npm scripts: 'lint', 'lint:fix' and 'prettier' * Does not lint inline js code * Fix all prettier and eslint errors * Add custom prettier rules * Apply custom prettier rules * Update readme to explain how to setup the repo * addressed comments
20 lines
695 B
HTML
20 lines
695 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="third-party/jquery-ui.css" />
|
|
<link rel="stylesheet" href="third-party/jquery-ui.structure.css" />
|
|
<link rel="stylesheet" href="third-party/jquery-ui.theme.css" />
|
|
<link rel="stylesheet" href="popup.css" />
|
|
<script src="third-party/jquery-1.12.4.js"></script>
|
|
<script src="third-party/jquery-ui-1.12.1.js"></script>
|
|
</head>
|
|
<body style="width: 400px">
|
|
<div>Search Bookmarks: <input id="search" /></div>
|
|
<div id="bookmarks"></div>
|
|
<div id="editdialog"></div>
|
|
<div id="deletedialog"></div>
|
|
<div id="adddialog"></div>
|
|
<div id="test-frame"></div>
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html>
|