Roblox options extra

-

  1. // ==UserScript==
  2. // @name Roblox options extra
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description -
  6. // @license GNU GPLv3
  7. // @author Genpro
  8. // @match https://*.roblox.com/*
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. // css style insertion
  14. var styles = `
  15. body.light-theme {
  16. background-color: #e3e3e3;
  17. color: #191919;
  18. }
  19. .light-theme .content {
  20. background-color: unset;
  21. color: unset;
  22. }
  23. .light-theme .icon-default-navigation, .light-theme .icon-nav-blog, .light-theme .icon-nav-charactercustomizer, .light-theme .icon-nav-friends, .light-theme .icon-nav-group, .light-theme .icon-nav-home, .light-theme .icon-nav-inventory, .light-theme .icon-nav-menu, .light-theme .icon-nav-message, .light-theme .icon-nav-my-feed, .light-theme .icon-nav-notification-stream, .light-theme .icon-nav-profile, .light-theme .icon-nav-robux, .light-theme .icon-nav-search, .light-theme .icon-nav-search-white, .light-theme .icon-nav-settings, .light-theme .icon-nav-shop, .light-theme .icon-nav-trade {
  24. background-image: url(https://images.rbxcdn.com/f4000b6d03a0df7153556d2514045629-navigation_10022018.svg);
  25. }
  26. .light-theme .icon-default-logo, .light-theme .icon-logo {
  27. background-image: url(https://static.rbxcdn.com/images/Logo/roblox_logo.svg);
  28. }
  29. .light-theme .icon-default-logo-r, .light-theme .icon-logo-r {
  30. background-image: url(http://web.archive.org/web/20160805210957im_/https://static.rbxcdn.com/images/Logo/logo_R.svg);
  31. }
  32. .light-theme .rbx-header {
  33. background-color: #0074bd;
  34. height: 40px;
  35. border-width: 0 0 0;
  36. }
  37. .light-theme.rbx-header {
  38. background-color: #0074bd;
  39. height: 40px;
  40. border-width: 0 0 0;
  41. }
  42. .light-theme.rbx-header .text-header, .light-theme.rbx-header .text-header:active, .light-theme.rbx-header .text-header:focus, .light-theme.rbx-header .text-header:hover, .light-theme.rbx-header .text-header:link, .light-theme.rbx-header .text-header:visited {
  43. color: #fff;
  44. }
  45. .dark-theme .game-card-container, .light-theme .game-card-container {
  46. background-color: #fff;
  47. box-shadow: 0 1px 4px 0 rgba(25,25,25,0.3)
  48. }
  49. .light-theme .game-card-info {
  50. position: absolute;
  51. bottom: 6px;
  52. width: 100%;
  53. margin: 0 6px;
  54. }
  55. .dark-theme .game-card-info .light-theme .info-label.icon-playing-counts-gray, .dark-theme .game-card-info .light-theme .info-label.icon-playing-counts-gray-white-70, .dark-theme .game-card-info .light-theme .info-label.icon-votes-gray, .dark-theme .game-card-info .light-theme .info-label.icon-votes-gray-white-70, .dark-theme .gotham-font .light-theme .refresh-link-icon::after, .dark-theme .gotham-font .light-theme .see-all-link-icon::after, .gotham-font.dark-theme .light-theme .refresh-link-icon::after, .gotham-font.dark-theme .light-theme .see-all-link-icon::after, .gotham-font.light-theme .refresh-link-icon::after, .gotham-font.light-theme .see-all-link-icon::after, .light-theme .game-card-info .info-label.icon-playing-counts-gray, .light-theme .game-card-info .info-label.icon-playing-counts-gray-white-70, .light-theme .game-card-info .info-label.icon-votes-gray, .light-theme .game-card-info .info-label.icon-votes-gray-white-70, .light-theme .gotham-font .refresh-link-icon::after, .light-theme .gotham-font .see-all-link-icon::after, .light-theme .icon-currently-playing-sm, .light-theme .icon-default-common-sm, .light-theme .icon-push-right-sm, .light-theme .icon-rating-sm, .light-theme .icon-refresh-sm {
  56. background-image: url(https://images.rbxcdn.com/153fd3209692232cd8087cad74a669b0-games.svg);
  57. background-repeat: no-repeat;
  58. vertical-align: middle;
  59. }
  60. .game-tile .game-card-thumb-container .game-card-thumb {
  61. border-top-right-radius: 3px;
  62. border-top-left-radius: 3px;
  63. height: 150px;
  64. width: 150px;
  65. overflow: hidden;
  66. display: inline-block;
  67. margin: auto;
  68. }
  69. .game-card-container:hover {
  70. -webkit-transition: box-shadow 200ms ease;
  71. -o-transition: box-shadow 200ms ease;
  72. transition: box-shadow 200ms ease;
  73. box-shadow: 0 1px 6px 0 rgba(25,25,25,0.75);
  74. }
  75. .dark-theme .game-card-info .info-label.icon-votes-gray, .dark-theme .game-card-info .info-label.icon-votes-gray-white-70, .icon-rating-sm, .light-theme .game-card-info .info-label.icon-votes-gray, .light-theme .game-card-info .info-label.icon-votes-gray-white-70 {
  76. background-position: 0 -480px;
  77. }
  78. .dark-theme .game-card-info .info-label.icon-playing-counts-gray, .dark-theme .game-card-info .info-label.icon-playing-counts-gray-white-70, .icon-currently-playing-sm, .light-theme .game-card-info .info-label.icon-playing-counts-gray, .light-theme .game-card-info .info-label.icon-playing-counts-gray-white-70 {
  79. background-position: 0 -496px;
  80. }
  81. .light-theme .game-card-container .game-card-name {
  82. padding: 0 6px;
  83. }
  84. .light-theme .btn-secondary-xs {
  85. user-select: none;
  86. background-color: #00a2ff;
  87. border: 1px solid #00a2ff;
  88. color: #fff !important;
  89. cursor: pointer;
  90. display: inline-block;
  91. font-weight: 500;
  92. height: auto;
  93. text-align: center;
  94. white-space: nowrap;
  95. vertical-align: middle;
  96. padding: 4px;
  97. font-size: 14px;
  98. line-height: 100%;
  99. border-radius: 3px;
  100. }
  101. .light-theme .btn-secondary-xs:link {
  102. color: #fff;
  103. }
  104. .light-theme .scroller {
  105. background-color: #fff;
  106. border: 1px solid #b8b8b8;
  107. }
  108. .light-theme .scroller.disabled {
  109. opacity: .5;
  110. cursor: default;
  111. border: 1px solid #e3e3e3;
  112. }
  113. .light-theme .section-content.remove-panel {
  114. background-color: #fff;
  115. padding-top: 16px;
  116. padding-left: 16px;
  117. padding-right: 16px;
  118. }
  119. .light-theme .people-list {
  120. height: 163px;
  121. max-height: 163px;
  122. }
  123. .light-theme .people-list-container {
  124. height: 220px;
  125. }
  126. .light-theme .rbx-upgrade-now .btn-secondary-md {
  127. background-color: #00a2ff;
  128. border: 1px solid #00a2ff;
  129. }
  130. .light-theme .notification, .light-theme .notification-blue, .light-theme .notification-red {
  131. background-color: #00a2ff;
  132. padding: 3px 5px;
  133. min-width: 24px;
  134. border-radius: 12px;
  135. font-size: 12px;
  136. font-weight: 500;
  137. color: #fff;
  138. text-align: center;
  139. }
  140. .light-theme .rbx-left-col {
  141. background-color: #fff;
  142. box-shadow: 0 0 3px rgba(25,25,25,.3);
  143. }
  144. .light-theme .btn-secondary-xs:focus, .light-theme .btn-secondary-xs:hover {
  145. background-color: #32B5FF;
  146. border-color: #32B5FF;
  147. color: #fff;
  148. cursor: pointer;
  149. }
  150. .light-theme .btn-secondary-xs.active, .light-theme .btn-secondary-xs:active {
  151. background-color: #32B5FF;
  152. color: #fff;
  153. }
  154. a.btn-secondary-xs .light-theme {
  155. color: #fff !important;
  156. }
  157. .btn-secondary-xs:link {
  158. color: #fff;
  159. }
  160. .light-theme.rbx-header .rbx-navbar li:hover {
  161. border: 0 #ececec66;
  162. border-bottom: 2px solid #ececec66;
  163. }
  164. .light-theme .item-card-container .item-card-caption {
  165. padding: 6px 6px 0 6px;
  166. }
  167. .dark-theme .item-card-container, .light-theme .item-card-container {
  168. background-color: #fff;
  169. }
  170. .light-theme .item-card-container .item-card-thumb-container {
  171. border-top-right-radius: 3px;
  172. border-top-left-radius: 3px;
  173. position: relative;
  174. border-bottom: 1px solid #E3E3E3;
  175. background-color: #fff;
  176. }
  177. .light-theme .input-group-btn .input-dropdown-btn {
  178. user-select: none;
  179. border: 1px solid transparent;
  180. background-color: #fff;
  181. border-color: #B8B8B8;
  182. color: #191919;
  183. cursor: pointer;
  184. font-weight: 400;
  185. height: auto;
  186. text-align: center;
  187. white-space: nowrap;
  188. vertical-align: middle;
  189. margin: 0;
  190. line-height: 18px;
  191. }
  192. .light-theme .input-group-btn .input-dropdown-btn:focus, .light-theme .input-group-btn .input-dropdown-btn:hover {
  193. background-color: #00A2FF;
  194. border-color: #00A2FF;
  195. color: #fff;
  196. cursor: pointer;
  197. }
  198. .light-theme .input-group-btn .input-dropdown-btn.active, .light-theme .input-group-btn .input-dropdown-btn:active {
  199. background-color: #00A2FF;
  200. border-color: #00A2FF;
  201. color: #fff;
  202. cursor: pointer;
  203. }
  204. .light-theme .btn-control-md {
  205. user-select: none;
  206. background-color: #fff;
  207. border: 1px solid #b8b8b8;
  208. color: #191919;
  209. cursor: pointer;
  210. display: inline-block;
  211. font-weight: 500;
  212. height: auto;
  213. text-align: center;
  214. white-space: nowrap;
  215. vertical-align: middle;
  216. padding: 9px;
  217. font-size: 18px;
  218. line-height: 100%;
  219. border-radius: 3px;
  220. }
  221. .light-theme .btn-control-md:focus, .light-theme .btn-control-md:hover {
  222. background-color: #fff;
  223. border-color: #B8B8B8;
  224. color: #191919;
  225. cursor: pointer;
  226. }
  227. .light-theme .btn-control-md.active, .light-theme .btn-control-md:active {
  228. background-color: #fff;
  229. color: #191919;
  230. }
  231. .light-theme .pager .first .pager-btn, .light-theme .pager .first a, .light-theme .pager .last .pager-btn, .light-theme .pager .last a, .light-theme .pager .pager-next .pager-btn, .light-theme .pager .pager-next a, .light-theme .pager .pager-prev .pager-btn, .light-theme .pager .pager-prev a {
  232. background-color: #fff;
  233. }
  234. .light-theme .bg-gray-4 {
  235. background-color: unset;
  236. }
  237. .light-theme .btn-buy-md {
  238. background-color: unset;
  239. border-color: unset;
  240. color: unset;
  241. border-radius: unset;
  242. -webkit-user-select: none;
  243. -moz-user-select: none;
  244. -ms-user-select: none;
  245. user-select: none;
  246. border: 1px solid
  247. transparent;
  248. border-top-color: transparent;
  249. border-right-color: transparent;
  250. border-bottom-color: transparent;
  251. border-left-color: transparent;
  252. background-color:
  253. #fff;
  254. border-color:
  255. #B8B8B8;
  256. color:
  257. #757575;
  258. cursor: pointer;
  259. display: inline-block;
  260. font-weight: 400;
  261. height: auto;
  262. text-align: center;
  263. white-space: nowrap;
  264. vertical-align: middle;
  265. padding: 9px 9px;
  266. font-size: 18px;
  267. line-height: 100%;
  268. border-radius: 3px;
  269. }
  270. .light-theme .btn-buy-md:focus, .light-theme .btn-buy-md:hover {
  271. background-color:
  272. #3FC679;
  273. border-color:
  274. #3FC679;
  275. color:
  276. #fff;
  277. cursor: pointer;
  278. }
  279. .light-theme .btn-buy-md.active, .light-theme .btn-buy-md:active {
  280. background-color:
  281. #3FC679;
  282. color:
  283. #fff;
  284. }
  285. .dark-theme .store-card, .light-theme .store-card {
  286. background-color:
  287. #fff;
  288. position: relative;
  289. border: 0 none;
  290. border-radius: 3px;
  291. margin: 0 5% 0 0;
  292. max-width: 150px;
  293. padding: 0;
  294. }
  295. .light-theme .text-robux, .light-theme .text-robux-lg {
  296. color: #02b757;
  297. font-weight: 400;
  298. }
  299. .light-theme .text-robux-tile {
  300. color: #02b757;
  301. font-weight: 500;
  302. }
  303. .light-theme .icon-default-economy-small, .light-theme .icon-robux-16x16, .light-theme .icon-robux-gold-16x16, .light-theme .icon-robux-gray-16x16, .light-theme .icon-robux-white-16x16 {
  304. background-image: url(https://static.rbxcdn.com/images/Shared/branded_04182018.svg);
  305. background-repeat: no-repeat;
  306. background-size: 32px auto;
  307. width: 16px;
  308. height: 16px;
  309. display: inline-block;
  310. vertical-align: middle;
  311. }
  312. .store-card-price .icon-robux-16x16 {
  313. margin-top: 0px !important;
  314. }
  315. .icon-robux-16x16 {
  316. background-position: 0px -64px !important;
  317. }
  318. .light-theme .icon-default-economy-28x28, .light-theme .icon-robux-28x28, .light-theme .icon-robux-gold-28x28, .light-theme .icon-robux-gray, .light-theme .icon-robux-white {
  319. background-image: url(https://images.rbxcdn.com/757f696cbfd2d8fcde61d219cead6a2c-branded_04182018.svg) !important;
  320. }
  321. #nav-robux-icon .icon-robux-28x28 {
  322. background-position: -0px -196px;
  323. }
  324. #nav-robux-icon .icon-robux-28x28:hover {
  325. background-position: -28px -196px; !important;
  326. }
  327. .rbx-tabs-horizontal .rbx-tab.active .rbx-tab-heading {
  328. color:
  329. #191919 !important;
  330. box-shadow: 0 -4px 0 0
  331. #00A2FF inset !important;
  332. }
  333. .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading:hover, .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading:focus, .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading:active, .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading.active {
  334. box-shadow: 0 -4px 0 0
  335. #00A2FF inset !important;
  336. }
  337. .rbx-tabs-horizontal .rbx-tab .rbx-tab-heading:hover {
  338. background-color:
  339. #F2F2F2 !important;
  340. }
  341. .rbx-tab:hover .rbx-tab-heading:hover, .rbx-tab:hover .rbx-tab-heading:focus, .rbx-tab:hover .rbx-tab-heading:active, .rbx-tab.active .rbx-tab-heading:hover, .rbx-tab.active .rbx-tab-heading:focus, .rbx-tab.active .rbx-tab-heading:active {
  342. border: 0 none !important;
  343. }
  344. .text-name, .text-name:link, .text-name:hover, .text-name:visited, .text-name:active {
  345. color:
  346. #00A2FF !important;
  347. }
  348. .text-label {
  349. color:
  350. #B8B8B8 !important;
  351. font-weight: 400 !important;
  352. }
  353. .light-theme .icon-clanpoint, .light-theme .icon-default-branded, .light-theme .icon-favorite, .light-theme .icon-follow-game, .light-theme .icon-follow-game-gray, .light-theme .icon-leaderboard, .light-theme .icon-playerpoint, .light-theme .icon-robux, .light-theme .icon-robux-28x28, .light-theme .icon-robux-burst-banner, .light-theme .icon-robux-gold, .light-theme .icon-robux-gray, .light-theme .icon-robux-white {
  354. background-image: url(https://static.rbxcdn.com/images/Shared/branded_04182018.svg)
  355. }
  356. .light-theme .icon-allgears, .light-theme .icon-Building, .light-theme .icon-catalog, .light-theme .icon-copylocked, .light-theme .icon-default-games, .light-theme .icon-dislike, .light-theme .icon-experimental-black, .light-theme .icon-experimental-gray1, .light-theme .icon-experimental-gray2, .light-theme .icon-experimental-white, .light-theme .icon-Explosive, .light-theme .icon-games, .light-theme .icon-inventory, .light-theme .icon-like, .light-theme .icon-Melee, .light-theme .icon-Musical, .light-theme .icon-Navigation, .light-theme .icon-nocopylocked, .light-theme .icon-nogear, .light-theme .icon-partialgears, .light-theme .icon-playaudio, .light-theme .icon-playing-counts-gray, .light-theme .icon-playing-counts-gray-white-70, .light-theme .icon-PowerUp, .light-theme .icon-privateserver, .light-theme .icon-publicserver, .light-theme .icon-Ranged, .light-theme .icon-share-game-to-chat, .light-theme .icon-Social, .light-theme .icon-Transport, .light-theme .icon-votes-gray, .light-theme .icon-votes-gray-white-70 {
  357. background-image: url(https://static.rbxcdn.com/images/Shared/games_08302018.svg);
  358. }
  359. .voting-panel .users-vote .upvote span {
  360. color:
  361. #02b757 !important;
  362. }
  363. .voting-panel .users-vote .vote-details .vote-numbers .count-left {
  364. float: left;
  365. color:
  366. #02b757 !important;
  367. }
  368. .voting-panel .users-vote .vote-details .vote-numbers .count-right {
  369. float: right;
  370. text-align: right;
  371. color:
  372. #E2231A !important;
  373. }
  374. .voting-panel .users-vote .vote-details .vote-container .vote-percentage {
  375. background-color:
  376. #02b757 !important;
  377. }
  378. .voting-panel .users-vote .vote-details .vote-container .vote-background.has-votes {
  379. background-color:
  380. #E27676 !important;
  381. }
  382. .light-theme .section-content.remove-panel {
  383. background-color:
  384. #fff;
  385. padding-top: 16px;
  386. padding-left: 16px;
  387. padding-right: 16px;
  388. padding-bottom: 16px !important;
  389. }
  390. .spinner {
  391. background-image: url("https://static.rbxcdn.com/images/shared/loading.gif") !important;
  392. }
  393. .dark-theme .icon-default-common, .dark-theme .icon-play-game, .dark-theme .icon-play-with-circle, .icon-default-common, .icon-play-game, .icon-play-with-circle, .light-theme .icon-default-common, .light-theme .icon-play-game, .light-theme .icon-play-with-circle {
  394. background-image: unset !important;
  395. }
  396. .icon-play-game:before {
  397. content: "Play";
  398. line-height: 163%;
  399. }
  400. .light-theme .section-content-off {
  401. background-color:
  402. #b8b8b8;
  403. color:
  404. #757575;
  405. padding: 15px;
  406. text-align: center;
  407. }
  408. .light-theme .btn-secondary-md {
  409. -webkit-user-select: none;
  410. -moz-user-select: none;
  411. -ms-user-select: none;
  412. user-select: none;
  413. background-color:
  414. #00a2ff;
  415. border: 1px solid
  416. #00a2ff;
  417. color:
  418. #fff;
  419. cursor: pointer;
  420. display: inline-block;
  421. font-weight: 500;
  422. height: auto;
  423. text-align: center;
  424. white-space: nowrap;
  425. vertical-align: middle;
  426. padding: 9px;
  427. font-size: 16px;
  428. line-height: 100%;
  429. border-radius: 3px;
  430. }
  431. .light-theme .stack .stack-list .stack-row {
  432. background-color:
  433. #fff;
  434. }
  435. .light-theme .btn-common-play-game-lg, .light-theme a.btn-common-play-game-lg {
  436. -webkit-user-select: none;
  437. -moz-user-select: none;
  438. -ms-user-select: none;
  439. user-select: none;
  440. background-color:
  441. #02b757;
  442. border: 1px solid
  443. #02b757;
  444. color:
  445. #fff;
  446. cursor: pointer;
  447. display: inline-block;
  448. font-weight: 500;
  449. height: auto;
  450. text-align: center;
  451. white-space: nowrap;
  452. vertical-align: middle;
  453. padding: 12px;
  454. font-size: 20px;
  455. line-height: 100%;
  456. border-radius: 5px;
  457. }
  458. .light-theme .input-group .input-field {
  459. background-color: rgb(255, 255, 255);
  460. }
  461. .light-theme .btn-growth-md {
  462. -webkit-user-select: none;
  463. -moz-user-select: none;
  464. -ms-user-select: none;
  465. user-select: none;
  466. background-color: #02b757;
  467. border: 1px solid
  468. #02b757;
  469. border-top-color: rgb(2, 183, 87);
  470. border-right-color: rgb(2, 183, 87);
  471. border-bottom-color: rgb(2, 183, 87);
  472. border-left-color: rgb(2, 183, 87);
  473. color: #fff;
  474. cursor: pointer;
  475. display: inline-block;
  476. font-weight: 500;
  477. height: auto;
  478. text-align: center;
  479. white-space: nowrap;
  480. vertical-align: middle;
  481. padding: 9px;
  482. font-size: 16px;
  483. line-height: 100%;
  484. border-radius: 3px;
  485. }
  486. .item-card-price {
  487. height: 28px;
  488. }
  489. .item-card-price h4 {
  490. font-size: 16px;
  491. }
  492. .light-theme .games-list-container {
  493. background-color: transparent !important;
  494. }
  495. .home-header-content a:before {
  496. content: "Hello, ";
  497. }
  498. .home-header-content a:after {
  499. content: "!";
  500. }
  501. .light-theme .container-footer {
  502. background-color: transparent;
  503. }
  504. .text-link, .text-link:active, .text-link:hover, .text-link:link, .text-link:visited, .vlist .list-item .list-body .list-content a, .vlist .list-item .list-body .list-content a:active, .vlist .list-item .list-body .list-content a:hover, .vlist .list-item .list-body .list-content a:link, .vlist .list-item .list-body .list-content a:visited {
  505. color:
  506. #00a2ff !important;
  507. }
  508. .friend-list .friend .friend-link, .people-list .friend .friend-link {
  509. color: #191919 !important;
  510. }
  511. a[href="https://www.roblox.com/upgrades/robux?ctx=nav"]{
  512. text-transform: uppercase;
  513. }
  514. .places-list {
  515. margin-bottom: 24px;
  516. }
  517. .sponsored-game .game-card-native-ad .native-ad-label {
  518. color: #fff !important;
  519. }
  520. .light-theme .game-card-native-ad {
  521. background-color: #b8b8b8 !important;
  522. }
  523. .games-page-left {
  524. margin-right: 345px !important;
  525. padding: 0 12px !important;
  526. }
  527. .btn-economy-robux-white-lg.disabled:hover span[class^="icon-"], .btn-economy-robux-white-lg.disabled span[class^="icon-"], .btn-economy-robux-white-lg[disabled]:hover span[class^="icon-"], .btn-economy-robux-white-lg[disabled] span[class^="icon-"], .btn-economy-robux-white-lg span[class^="icon-"], a.btn-economy-robux-white-lg.disabled:hover span[class^="icon-"], a.btn-economy-robux-white-lg.disabled span[class^="icon-"], a.btn-economy-robux-white-lg[disabled]:hover span[class^="icon-"], a.btn-economy-robux-white-lg[disabled] span[class^="icon-"], a.btn-economy-robux-white-lg span[class^="icon-"] {
  528. background-position: 0 -250px;
  529. }
  530. .light-theme .btn-secondary-md:link {
  531. color: #fff;
  532. }
  533. .light-theme .btn-secondary-md:focus, .light-theme .btn-secondary-md:hover {
  534. background-color: #32b5ff;
  535. border-color: #32b5ff;
  536. color: #fff;
  537. cursor: pointer;
  538. }
  539. .light-theme .pager .first .pager-btn, .light-theme .pager .first a, .light-theme .pager .last .pager-btn, .light-theme .pager .last a, .light-theme .pager .pager-next .pager-btn, .light-theme .pager .pager-next a, .light-theme .pager .pager-prev .pager-btn, .light-theme .pager .pager-prev a {
  540. margin-left: 0;
  541. background-color: #fff;
  542. border: 1px solid
  543. #b8b8b8;
  544. border-radius: 3px;
  545. display: inline-block;
  546. border-radius: 0px;;
  547. }
  548. .light-theme .btn-control-md.disabled, .light-theme .btn-control-md.disabled.active, .light-theme .btn-control-md.disabled:active, .light-theme .btn-control-md.disabled:focus, .light-theme .btn-control-md.disabled:hover, .light-theme .btn-control-md[disabled], .light-theme .btn-control-md[disabled].active, .light-theme .btn-control-md[disabled]:active, .light-theme .btn-control-md[disabled]:focus, .light-theme .btn-control-md[disabled]:hover {
  549. opacity: .5;
  550. background-color: #fff;
  551. border-color: #b8b8b8;
  552. color: #b8b8b8;
  553. cursor: not-allowed;
  554. pointer-events: none;
  555. }
  556. .light-theme .menu-vertical .menu-option.active {
  557. color:
  558. #606162;
  559. background-color:
  560. transparent;
  561. box-shadow: inset 4px 0 0 0
  562. #00A2FF;
  563. }
  564. .robux-upsell .unsubscribed .icon-robux-white {
  565. background-position: 0 -196px !important;
  566. }
  567. .robux-downsell .icon-robux-gray {
  568. background-position: 0 -167px;
  569. }
  570. .icon-default-economy-small, .icon-robux-16x16, .icon-robux-gold-16x16, .icon-robux-gray-16x16, .icon-robux-white-16x16 {
  571. }
  572. .light-theme .age-bracket-label {
  573. display: none;
  574. }
  575. .light-theme .navbar-icon-item .navbar-stream {
  576. display: none;
  577. }
  578. .icon-tix-28x28, .rbx-header .icon-nav-notification-stream {
  579. background-image: url(http://web.archive.org/web/20150901091744im_/http://www.roblox.com/images/NextStyleGuide/navigation.svg) !important;
  580. background-repeat: no-repeat;
  581. background-size: auto auto;
  582. width: 28px;
  583. height: 28px;
  584. background-position: 0 -56px;
  585. display: inline-block;
  586. }
  587. .icon-tix-28x28:hover, .rbx-header .icon-nav-notification-stream:hover {
  588. background-position: -28px -56px;
  589. }
  590. .notification-stream-icon:after {
  591. content: "";
  592. }
  593. .rbx-header .rbx-navbar-icon-group .navbar-stream {
  594. width: unset !important;
  595. }
  596. `
  597. var styleSheet = document.createElement("style")
  598. styleSheet.type = "text/css"
  599. styleSheet.innerText = styles
  600. document.head.appendChild(styleSheet)
  601. var elem = "<span class='rbx-text-navbar-right text-header' id='nav-robux-amount0'>156K+</span>";
  602. var inserted_tix = false;
  603. var patched_develop = false;
  604. new MutationObserver(function(mutations) {
  605. if(!inserted_tix){
  606. var ico = document.getElementById("nav-ns-icon");
  607. if(ico){
  608. var nav = ico.parentNode.parentNode;
  609. var par = nav.parentNode;
  610. par.insertBefore(nav, par.children[1]);
  611. var span = document.createElement("span");
  612. span.class = "rbx-text-navbar-right text-header";
  613. span.innerHTML = "24";
  614. ico.appendChild(span);
  615. inserted_tix = true;
  616. }
  617. }
  618. if(!patched_develop){
  619. Array.from(document.getElementsByClassName("font-header-2 nav-menu-title text-header")).forEach(function(v){
  620. if(v.innerHTML.includes("Create")){
  621. v.innerHTML = "Develop";
  622. patched_develop = true;
  623. }
  624. });
  625. }
  626. }).observe(document, {childList: true, subtree: true});
  627. function start() {
  628. document.getElementById("nav-robux-amount").innerText = "10M+";
  629. // Change 10M+ to whatever you want for that much fake robux. (You can do words too)
  630. }
  631. window.onload = start;
  632. })();