/usr/share/chromium/extensions/tt-rss-notifier/options.html is in chromium-tt-rss-notifier 0.5.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | <html>
<head>
<title>Tiny Tiny RSS Notifier Options</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script type="text/javascript" src="lib/prototype.js"></script>
<script type="text/javascript" src="lib/scriptaculous/scriptaculous.js?load=effects,dragdrop,controls"></script>
<script type="text/javascript" src="js/options.js"></script>
<style type="text/css">
fieldset {
border : 0px;
margin : 0px;
clear : left;
line-height : 25px;
}
div#status {
font-size : 14px;
color : #88b0ff;
}
label {
width : 250px;
display : block;
float : left;
text-align : right;
padding-right : 1em;
}
p.last-updated {
color : gray;
}
fieldset span.note {
color : gray;
font-style : italic;
}
</style>
<body>
<div class="floatingLogo"><img src="images/icon_128.png"></div>
<h1>Tiny Tiny RSS Notifier</h1>
<p class='last-updated'>Last update: <span id="last_updated">N/A</span></p>
<div style='display : none' id="status"></div>
<h2>Options</h2>
<form name="options" id="options">
<fieldset>
<label>URL of your Tiny Tiny RSS installation:</label>
<input name="site_url" size="60" value=""/>
</fieldset>
<fieldset>
<label>Login:</label>
<input name="login" size="30" value=""/>
</fieldset>
<fieldset>
<label>Single-user mode:</label>
<input name="single_user" type="checkbox" value="1"/>
</fieldset>
<fieldset>
<label>Update interval (in minutes):</label>
<input name="update_interval" size="30" value=""/>
</fieldset>
<fieldset>
<label>Show badge:</label>
<input name="show_badge" type="checkbox" value="1"/>
</fieldset>
<fieldset>
<label>Badge shows fresh articles:</label>
<input name="show_fresh" type="checkbox" value="1"/>
<span class="note">(requires Tiny Tiny RSS 1.4.1 or trunk)</span>
</fieldset>
<fieldset>
<label>Periodically try to update tt-rss feeds:</label>
<input name="update_feeds" type="checkbox" value="1"/>
<span class="note">Please use this as a last resort method only in case you can't update your feeds <a target="_blank" href="http://tt-rss.org/wiki/UpdatingFeeds">in any other way</a>. Last updated: <span id='feeds-last-updated'>N/A</span></span>
</fieldset>
<input type="submit" value="Save"/>
</form>
<p>Copyright © 2010-2012
<a target="_blank" href="http://tt-rss.org">Andrew Dolgov</a>.
Licensed under GNU GPL version 2.</p>
</body>
|