Boku to Douru to Hourou Shoujo
Alternative Name: |
|
Genre(s): |
|
Author(s): |
|
Artist(s): |
|
Type: | Manga |
Summary: | A serious hardworking company employee, Arai Kyuta, is an extreme misanthrope who can't take off his mask at his human-ish company.
One day, he meets a young girl who looks like a discarded doll.... and their twisted co-ed life begins with a deal...
Information:
MangaUpdates Anime-Planet
Reading progress:
Volume 0/?
Chapter 0/?
/?
/?
Actions:
Upload chapter Follow
(10) Masterpiece(9) Great(8) Very good(7) Good(6) Fine(5) Average(4) Bad(3) Very bad(2) Horrible(1) Appalling(0) Remove Rating
Report
Chapters
Comments 6
Covers
Vol. 1 Ch. 1
12
5 mo ago
Acorn
ankiwi
2,638
2k
MangaDex settings
×
Site theme:
LightDarkLight-BronzeDark-BronzeLight-SlateDark-SlateAbyss Light
Filter chapter languages:
ArabicBengaliBulgarianBurmeseCatalanChinese (Simp)Chinese (Trad)CzechDanishDutchEnglishFilipinoFinnishFrenchGermanGreekHebrewHindiHungarianIndonesianItalianJapaneseKoreanLithuanianMalayMongolianNorwegianOtherPersianPolishPortuguese (Br)Portuguese (Pt)RomanianRussianSerbo-CroatianSpanish (Es)Spanish (LATAM)SwedishThaiTurkishUkrainianVietnamese All langs Select AllDeselect All
User interface language:
ArabicBengaliBulgarianBurmeseCatalanChinese (Simp)Chinese (Trad)CzechDanishDutchEnglishFilipinoFinnishFrenchGermanGreekHebrewHindiHungarianIndonesianItalianJapaneseKoreanLithuanianMalayMongolianNorwegianOtherPersianPolishPortuguese (Br)Portuguese (Pt)RomanianRussianSerbo-CroatianSpanish (Es)Spanish (LATAM)SwedishThaiTurkishUkrainianVietnamese English
Save
Info: These settings are temporary. Please make an account to remember these permanently.
Submit new Report
×
Manga Title
Please note, that not every report is actionable. If you don't like a particular user's posts, consider blocking (from their profile page) instead.
Reported Post:
Report Reason:
- Select A Reason -
Images not loading - Try going to settings page and setting MD@H Port Limit to 443 Only. Data saving is currently disabled - turn it off if all images are failing.
Fake/Spam chapter
Watermarked images
Naming rules broken
Incorrect group
Group policy evasion
Official release/Raw
Other
Spoilers
Aggregator links
Unwanted solicitation
Racism
Sexism
Religious Discrimination
Direct Personal Attack
Other
- Select A Reason -
Additional Info:
Close
Submit
© 2021 MangaDex | Path Network | sdbx.moe | DDoS Protection by DDoS-GUARD
Guest
Log in
Sign up
Manga
Titles
Updates
Search
Featured
Random
Add
Follows
Community
Forums
Groups
Users
Discord
Twitter
Reddit
IRC
Info
Stats
Rules
About
Change log
Affiliates
Tutorial
All
Manga
Groups
Users
MikuDex
if (!('URL' in window) || !('URLSearchParams' in window)) {
document.head.appendChild(Object.assign(document.createElement("script"), {
"src": "/dist/js/polyfills.prod.js?1614023939",
"async": true,
}))
}
var t = 'mang';
t = t + 'adex.org';
var w = 'www.mangadex.org';
if (window.location.hostname != t && window.location.hostname != w) {
window.location = 'https://' + t;
}
var $ = jQuery;
$(document).on('change', '.btn-file :file', function() {
var input = $(this),
numFiles = input.get(0).files ? input.get(0).files.length : 1,
label = input.val().replace(/\/g, '/').replace(/.*//, '');
input.trigger('fileselect', [numFiles, label]);
});
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function commaMultipleSelect(id) {
var list = document.getElementById(id);
var selected = new Array();
for (i = 0; i < list.options.length; i++) {
if (list.options[i].selected) {
selected.push(list.options[i].value);
}
}
return selected.join(',');
}
function commaMultipleCheckbox(name) {
var list = document.getElementsByName(name);
var selected = new Array();
for (i = 0; i < list.length; i++) {
if (list[i].checked) {
selected.push(list[i].value);
}
}
return selected.join(',');
}
$(document).ready(function() {
var query = location.search;
$("#left_swipe_area").swipe({
swipeRight: function(event, direction, distance, duration, fingerCount) {
$('#left_modal').modal('toggle');
},
threshold: 50
});
$("#right_swipe_area").swipe({
swipeLeft: function(event, direction, distance, duration, fingerCount) {
$('#right_modal').modal('toggle');
},
threshold: 50
});
$("#right_modal").swipe({
swipeRight: function(event, direction, distance, duration, fingerCount) {
$('#right_modal').modal('toggle');
},
threshold: 50
});
$("#left_modal").swipe({
swipeLeft: function(event, direction, distance, duration, fingerCount) {
$('#left_modal').modal('toggle');
},
threshold: 50
});
$("#read_announcement_button").click(function(event) {
$.ajax({
url: "/ajax/actions.ajax.php?function=read_announcement",
type: 'GET',
success: function(data) {
$("#announcement").hide();
},
cache: false,
contentType: false,
processData: false
});
event.preventDefault();
});
$(".logout").click(function(event) {
$.ajax({
type: "POST",
url: "/ajax/actions.ajax.php?function=logout",
success: function(data) {
$("#message_container").html(data).show().delay(1500).fadeOut();
location.reload();
}
});
event.preventDefault();
});
function highlightPost(node) {
if (node) {
Array.from(document.querySelectorAll('.highlighted')).forEach(function(n) {
n.classList.remove('highlighted')
});
node.classList.add('highlighted')
}
}
if (location.hash)
highlightPost(document.querySelector(location.hash + ' .postbody'));
$('a.permalink').click(function(event) {
highlightPost(event.target.closest('.post').querySelector('.postbody'))
});
$('#homepage_settings_form').submit(function(event) {
Array.prototype.slice.call(this.querySelectorAll('input[type=file]'))
.filter(function(n) { return n && !n.files.length })
.forEach(function(n) { n.parentNode.removeChild(n) });
var button = $('#homepage_settings_button')
var buttonHtml = button.html()
var formData = new FormData(this);
var success_msg = " Success: Your MangaDex settings have been saved. ";
button.html(" Saving...").attr('disabled', true);
$.ajax({
url: '/ajax/actions.ajax.php?function=homepage_settings',
type: 'POST',
data: formData,
cache: false,
headers: {'cache-control': 'no-cache'},
contentType: false,
processData: false,
async: true,
success: function (data) {
if (!data) {
$('#message_container').html(success_msg).show().delay(3000).fadeOut();
location.reload();
}
else {
$('#message_container').html(data).show().delay(3000).fadeOut();
}
button.html(buttonHtml).attr('disabled', false);
},
});
event.preventDefault();
});
//ratings_histogram
$("#histogram_toggle").click(function(){
$("#histogram_div").toggle();
});
var ctx = $("#ratings_histogram");
var ratings = JSON.parse(ctx.attr('data-json'));
var keys = []
var values = []
for (var i = 10; i >= 1; --i) {
keys.push(i)
values.push(0)
}
for (var i = 0; i < ratings.length; ++i) {
values[10 - ratings[i]]++
}
Chart.defaults.global.defaultFontSize = 11;
Chart.defaults.global.legend.display = false;
var myChart = new Chart(ctx, {
type: 'horizontalBar',
data: {
labels: keys,
datasets: [{
data: values,
backgroundColor: [
'rgba(255, 99, 132, 0.5)',
'rgba(54, 162, 235, 0.5)',
'rgba(255, 206, 86, 0.5)',
'rgba(75, 192, 192, 0.5)',
'rgba(153, 102, 255, 0.5)',
'rgba(255, 99, 132, 0.5)',
'rgba(54, 162, 235, 0.5)',
'rgba(255, 206, 86, 0.5)',
'rgba(75, 192, 192, 0.5)',
'rgba(153, 102, 255, 0.5)'
],
borderWidth: 0
}]
},
options: {
title: {
display: true,
text: 'Distribution of Ratings'
},
scales: {
xAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
lightbox.option({
'wrapAround': true
});
$('.btn-spoiler').click(function(evt){
evt.preventDefault();
$(this).next(".spoiler").toggle();
});
});Source: |
Licensed in english: | No |