├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── es │ └── messages.json ├── fr │ └── messages.json ├── it │ └── messages.json ├── ja │ └── messages.json ├── pt_PT │ └── messages.json ├── ru │ └── messages.json ├── sv │ └── messages.json ├── zh_CN │ └── messages.json └── zh_TW │ └── messages.json ├── crowdin.yml ├── css ├── content.css ├── options.css └── popup.css ├── html ├── options.html └── popup.html ├── icon ├── icon-128.png ├── icon-16.png ├── icon-19.png ├── icon-32.png ├── icon-38.png ├── icon-48.png ├── icon-wide.png ├── iconwpadding.png └── oldicon-128.png ├── js ├── background.js ├── content.js └── popup.js └── manifest.json /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, caste, color, religion, or sexual 10 | identity and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the overall 26 | community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or advances of 31 | any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email address, 35 | without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | [INSERT CONTACT METHOD]. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series of 86 | actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or permanent 93 | ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within the 113 | community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.1, available at 119 | [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. 120 | 121 | Community Impact Guidelines were inspired by 122 | [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. 123 | 124 | For answers to common questions about this code of conduct, see the FAQ at 125 | [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at 126 | [https://www.contributor-covenant.org/translations][translations]. 127 | 128 | [homepage]: https://www.contributor-covenant.org 129 | [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html 130 | [Mozilla CoC]: https://github.com/mozilla/diversity 131 | [FAQ]: https://www.contributor-covenant.org/faq 132 | [translations]: https://www.contributor-covenant.org/translations 133 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Better Canvas](/icon/icon-wide.png) 2 | 3 | # Better Canvas 4 | 5 | Enhancements to Canvas like dark mode, better todo list, GPA calculator, and more! 6 | 7 | ### Supported on 8 | 9 | ![Google Chrome](https://img.shields.io/badge/Google%20Chrome-4285F4?style=for-the-badge&logo=GoogleChrome&logoColor=white) 10 | 11 | ![Firefox](https://img.shields.io/badge/Firefox-FF7139?style=for-the-badge&logo=Firefox-Browser&logoColor=white) 12 | 13 | ## Inquiries 14 | 15 | To contact me, please email ksucpea@gmail.com, or you can open an issue within the "Issues" tab on GitHub. 16 | 17 | ## Table of Contents 18 | 19 | - [Features](#features) 20 | - [Installation](#installation) 21 | - [Usage](#usage) 22 | - [Version Notes](#version-notes) 23 | - [Color Reference](#color-reference) 24 | - [Contributing](#contributing) 25 | - [Authors](#authors) 26 | 27 | ## Features 28 | 29 | Better Canvas introduces improvements to the Canvas user interface: 30 | 31 | - Fully customizable dark mode (choose from premade options or manually edit dark mode) 32 | - Automatic scheduling for dark mode 33 | - Dashboard card color palletes 34 | - Themes created by users 35 | - Assignments due list 36 | - Dashboard notes 37 | - Better todo list 38 | - Custom fonts 39 | - Condensed cards 40 | - Dashboard grades 41 | - Remove sidebar logo 42 | - Customizable card links 43 | - Gradient dashboard cards 44 | - Advanced card customization 45 | - GPA calculator (college and highschool) 46 | - Browser wide popup assignment reminder 47 | - Preview assignments and announcements from the dashboard 48 | 49 | ## Installation 50 | 51 | To install, run, and build with this repository, 52 | 53 | - Clone the repository locally with 54 | 55 | ```bash 56 | git clone https://github.com/ksucpea/bettercanvas.git 57 | ``` 58 | 59 | - Visit `chrome://extensions` in your browser. 60 | - Enable developer mode by toggling the switch in the upper right corner of the viewport. 61 | - Click the "Load upacked" button in the header. 62 | - When prompted to open a file, select the root directory of this repository. 63 | 64 | ## Usage 65 | 66 | To use Better Canvas, select your browser below to install the extension. 67 | 68 | [Chrome](https://chrome.google.com/webstore/detail/better-canvas/cndibmoanboadcifjkjbdpjgfedanolh) 69 | 70 | [Firefox](https://addons.mozilla.org/addon/better-canvas/) 71 | 72 | ### How to use 73 | 74 | - Once the extension is installed, navigate to your institution's Canvas homepage. 75 | - To edit the available options, click on the "Extensions" button in the upper right corner of the viewport. 76 | - When the menu opens, click on the Better Canvas extension. 77 | - A menu will appear with configuration options for your Canvas homepage. 78 | 79 | ## Version Notes 80 | 81 | #### Update 5.10 82 | 83 | - Fixed dark mode bug in discussion text boxes 84 | - Added new themes + fonts 85 | - Card colors now change instantly 86 | - Dark mode fixer feature 87 | - Card customization now shows preview of image 88 | - New sidebar options 89 | - Dark mode buttons preview their appearance 90 | - "Remove sidebar logo" feature 91 | - "Hide recent feedback" feature 92 | - Menu redesign 93 | - Fixed card assignment bug 94 | - Card assignment efficiency improvements 95 | - Dark mode rework 96 | - Dark mode now syncs 97 | - Option to use device dark mode settings 98 | - Improved todo list 99 | - "Color coded tab icons" feature 100 | - "Use card colors" option for todo list 101 | 102 | ## Color Reference 103 | 104 | | Color | Hex | 105 | | ---------- | ---------------------------------------------------------------- | 106 | | Background | ![#161616](https://via.placeholder.com/10/0a192f?text=+) #161616 | 107 | | Text | ![#ffffff](https://via.placeholder.com/10/ffffff?text=+) #ffffff | 108 | | Accent 01 | ![#ff002e](https://via.placeholder.com/10/ff002e?text=+) #ff002e | 109 | | Accent 02 | ![#ff5200](https://via.placeholder.com/10/ff5200?text=+) #ff5200 | 110 | | Accent 03 | ![#ff47ad](https://via.placeholder.com/10/ff47ad?text=+) #ff47ad | 111 | 112 | ## Contributing 113 | 114 | ### Add a new feature 115 | 116 | To add a new feature, please follow these guidelines. 117 | 118 | Note: I will probably make this automated in the future but it's a bit of work right now. 119 | 120 | #### Identifier 121 | 122 | - Should be a unqiue one/two word storage identifier to indicate its status. (ie "dark_mode" or "dashboard_grades") 123 | - If it has sub options (options that are specific to the main feature) these will also each need a unique identifier. 124 | - All options are synced and have a 8kb storage limit, so if your feature needs more than this please contact me. 125 | 126 | #### Changes to html/popup.html 127 | 128 | - Add the appropriate HTML into this file. The corresponding id and name (see below) should be the identifier. 129 | - If it has no sub options, it should be put in the same container as the other options with no sub options: 130 | 131 | ``` 132 |
133 | 134 | 135 |
136 |
137 |
138 |
139 | 140 |
141 | ``` 142 | 143 | - If it does have sub options it becomes it's own container: 144 | 145 | ``` 146 |
147 |
148 | 149 | 150 |
151 |
152 |
153 |
154 | 155 |
156 |
157 |
158 | 159 | 160 |
161 |
162 |
163 | ``` 164 | 165 | #### Changes to js/popup.js 166 | 167 | - Add the main identifier into the `syncedSwitches` array. 168 | - If you have sub-options: 169 | - Add these identifiers to the array found under the comment that says `//checkboxes`. 170 | 171 | #### Changes to js/background.js 172 | 173 | - Add all identifiers into the `syncedOptions` array. 174 | - Add a default value for your option to the `default_options` array. 175 | - Preferably this value should be `false` for booleans or ` ""` for strings (`null` can also be used if Canvas has a default for this option already) 176 | 177 | #### Changes to js/content.js 178 | 179 | - There should be a function(s) included in the this file that does the work. The name should clearly indicate it's purpose. 180 | - Under `applyOptionsChanges()`, add a switch case to call this function when the menu toggle is changed. 181 | - Depending on what your feature does, it needs to be told when to fire. 182 | - If the function changes any aspect of the dashboard, it should be put inside `checkDashboardReady()`. 183 | - If the function only adds css, it should be added to `applyAestheticChanges()`, and in this case should not be a separate function, instead add the css to the existing styles found in this function. 184 | - Anything else should be put under `startExtension()` and should be placed no higher than the `checkDashboardReady` function found here. 185 | 186 | ### Add a new theme 187 | 188 | To add a new theme, please follow these guidelines. 189 | 190 | You can export a theme using the export tool in the menu and sending an email to me, or you can merge it here after doing the following: 191 | 192 | #### Exporting 193 | 194 | - Go to the Themes tab and export dark mode, card images, card colors, and custom font. - The only on/off toggles that need be included are `disable_color_overlay` and `gradient_cards`. 195 | Any other toggles aren't necessary, so you should manually add these keys and the appropriate values in with the export code. 196 | - Pick a unique id for the theme, doesn't matter how long this is. 197 | 198 | #### Changes to js/popup.js 199 | 200 | - Add the export code under `getTheme()`. 201 | - Make sure it follows this format: `"theme-: { "exports": {"..."}, "preview": "..." }` 202 | - For the preivew, try to pick the smallest image size from the card images (under ~50kb is perfect), or you can find a smaller display image that isn't included in the card images. 203 | 204 | #### Changes to html/popup.html 205 | 206 | - Add the following under all the other theme buttons: 207 | 208 | ``` 209 | 210 | ``` 211 | 212 | - The theme name should be one/two words so it doesn't take up too much space. 213 | 214 | ## File structure 215 | 216 | ``` 217 | . 218 | ├── README.md 219 | ├── \_locales 220 | │ ├── en 221 | │ │ └── messages.json 222 | │ └── es 223 | │ └── messages.json 224 | ├── css 225 | │ ├── content.css 226 | │ ├── options.css 227 | │ └── popup.css 228 | ├── html 229 | │ ├── options.html 230 | │ └── popup.html 231 | ├── icon 232 | │ ├── icon-128.png 233 | │ ├── icon-16.png 234 | │ ├── icon-19.png 235 | │ ├── icon-32.png 236 | │ ├── icon-38.png 237 | │ ├── icon-48.png 238 | │ ├── icon-wide.png 239 | │ ├── iconwpadding.png 240 | │ └── oldicon-128.png 241 | ├── js 242 | │ ├── background.js 243 | │ ├── content.js 244 | │ └── popup.js 245 | └── manifest.json 246 | ``` 247 | 248 | ### Update the file structure 249 | 250 | #### Use the tree command 251 | 252 | - Linux/Unix 253 | - Install [tree command line tool](https://www.geeksforgeeks.org/tree-command-unixlinux/) 254 | - Use the tree command to generate file structure: 255 | ``` 256 | tree 257 | ``` 258 | 259 | Learn more about tree commands for Linux/Unix [here](https://www.geeksforgeeks.org/tree-command-unixlinux/). 260 | 261 | - Windows 262 | - Use the tree command to generate file structure: 263 | ``` 264 | tree / 265 | ``` 266 | 267 | Learn more about tree commands for Windows [here](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/tree). 268 | 269 | ## Authors 270 | 271 | #### Owner 272 | 273 | - [ksucpea](https://github.com/ksucpea) 274 | 275 | #### Contributors 276 | 277 | - [fudgeu](https://github.com/fudgeu) 278 | - [Tibo Geeraerts](https://github.com/tibogeeraerts) 279 | - [Jacob Mungle](https://github.com/Jelgnum) 280 | - [FireIsGood](https://github.com/FireIsGood) 281 | 282 | ## License 283 | 284 | This software is licensed under the GNU Affero General Public License v3.0 (AGPL), with the following additional restrictions: 285 | 286 | Commercial use is prohibited. You may not use this software, or any modified version of it, in any product or service that is sold, monetized, or used in connection with a commercial or for-profit activity. 287 | 288 | No public redistribution. You may not publicly re-upload, fork, or distribute the software (or modified versions) on any platform, repository, or hosting service (e.g., GitHub, npm, Chrome Web Store) without express written permission. 289 | 290 | Competing services prohibited. You may not use this software, modified or unmodified, to create or offer a public or private alternative to BetterCanvas — even if the service is offered for free. 291 | 292 | ![Better Canvas](/icon/icon-48.png) 293 | -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Bessere Leinwand" 4 | }, 5 | "updates": { 6 | "message": "Aktualisierungen" 7 | }, 8 | "dark_mode": { 9 | "message": "Dunkler Modus" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Geplanter Dunkelmodus" 13 | }, 14 | "auto_start_time": { 15 | "message": "Startzeit" 16 | }, 17 | "auto_end_time": { 18 | "message": "Endzeit" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Dunkler Modus" 22 | }, 23 | "enter_url": { 24 | "message": "Ihre Canvas-url:" 25 | }, 26 | "card_grades": { 27 | "message": "Kartenqualitäten" 28 | }, 29 | "gradient_cards": { 30 | "message": "Farbverlaufskarten" 31 | }, 32 | "condensed_cards": { 33 | "message": "Verdichtete Karten" 34 | }, 35 | "disable_color": { 36 | "message": "Farbüberlagerung deaktivieren" 37 | }, 38 | "card_assignments": { 39 | "message": "Kartenzuweisungen" 40 | }, 41 | "card_customization": { 42 | "message": "Karten" 43 | }, 44 | "custom_font": { 45 | "message": "Schriftarten" 46 | }, 47 | "useddmm": { 48 | "message": "Verwenden Sie tt/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Bessere ToDo-Liste" 52 | }, 53 | "max_items": { 54 | "message": "Max. Anzahl Elemente: " 55 | }, 56 | "hover_preview": { 57 | "message": "Bewegen Sie den Mauszeiger, um Details in der Vorschau anzuzeigen" 58 | }, 59 | "hide_completed": { 60 | "message": "Abgeschlossene ausblenden" 61 | }, 62 | "24hrformat": { 63 | "message": "24-Stunden-Format verwenden" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Dashboard-Notizen" 67 | }, 68 | "gpa_calculator": { 69 | "message": "GPA-Rechner" 70 | }, 71 | "gpa_settings": { 72 | "message": "GPA-Einstellungen" 73 | }, 74 | "grade_hover": { 75 | "message": "Nur beim Hover anzeigen" 76 | }, 77 | "due": { 78 | "message": "Fällig" 79 | }, 80 | "card_colors": { 81 | "message": "Kartenfarben" 82 | }, 83 | "back": { 84 | "message": "Zurück" 85 | }, 86 | "more_options": { 87 | "message": "Weitere Optionen" 88 | }, 89 | "manual_customization": { 90 | "message": "Manuelle Anpassung" 91 | }, 92 | "background_colors": { 93 | "message": "Hintergrund" 94 | }, 95 | "text_colors": { 96 | "message": "Text" 97 | }, 98 | "full_width": { 99 | "message": "Dashboard in voller Breite" 100 | }, 101 | "report_issue": { 102 | "message": "Problem melden" 103 | }, 104 | "themes": { 105 | "message": "Themen" 106 | }, 107 | "move_top": { 108 | "message": "Nach oben verschieben" 109 | }, 110 | "show_past_due": { 111 | "message": "Überfällige anzeigen" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Relative Fälligkeitsdaten" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Mehrere mit Komma eingeben)" 118 | }, 119 | "todo_remind": { 120 | "message": "To-do-Erinnerungen" 121 | }, 122 | "remlogo": { 123 | "message": "Sidebar-Logo entfernen" 124 | }, 125 | "hide_feedback": { 126 | "message": "Aktuelles Feedback ausblenden" 127 | }, 128 | "tab_icons": { 129 | "message": "Farbcodierte Registerkartensymbole" 130 | }, 131 | "todo_colors": { 132 | "message": "Kartenfarben verwenden" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Kumulativen GPA anzeigen" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Gewichteten GPA anzeigen" 139 | }, 140 | "device_dark": { 141 | "message": "Dunkelmodus-Einstellungen des Geräts verwenden" 142 | }, 143 | "presets": { 144 | "message": "Voreinstellungen" 145 | }, 146 | "dark_lighter": { 147 | "message": "Feuerzeug" 148 | }, 149 | "dark_light": { 150 | "message": "Licht" 151 | }, 152 | "dark_default": { 153 | "message": "Standard" 154 | }, 155 | "dark_dark": { 156 | "message": "Dunkel" 157 | }, 158 | "dark_darker": { 159 | "message": "Dunkler" 160 | }, 161 | "dark_mint": { 162 | "message": "Minze" 163 | }, 164 | "dark_blue": { 165 | "message": "Blauer Farbton" 166 | }, 167 | "dark_burn": { 168 | "message": "Brennen im Augapfel" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Einhorn" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Lichtmodus" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccin\n Von Angel" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n Von LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Pink\n Von Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Koralle\n Von Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Seitenleistentext" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Seitenleiste" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Solide" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Gradient" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Bild" 202 | }, 203 | "dp_background_0": { 204 | "message": "Hintergrund Main" 205 | }, 206 | "dp_background_1": { 207 | "message": "Hintergrund Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "Hintergrund Sonstiges" 211 | }, 212 | "dp_borders": { 213 | "message": "Grenzen" 214 | }, 215 | "dp_links": { 216 | "message": "Links" 217 | }, 218 | "dp_text_0": { 219 | "message": "Text Haupt" 220 | }, 221 | "dp_text_1": { 222 | "message": "Text Andere" 223 | }, 224 | "dp_text_2": { 225 | "message": "Text Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Dunkelmodus-Fixer (Beta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Dadurch wird versucht, alle Lücken im Dunkelmodus auf der aktuellen Seite zu schließen." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Gehen" 235 | }, 236 | "fix_dm_text": { 237 | "message": "Der Fixer wird automatisch auf diesen Seiten ausgeführt:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Better Canvas" 4 | }, 5 | "updates": { 6 | "message": "Updates" 7 | }, 8 | "dark_mode": { 9 | "message": "Dark mode" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Scheduled Dark Mode" 13 | }, 14 | "auto_start_time": { 15 | "message": "Start Time" 16 | }, 17 | "auto_end_time": { 18 | "message": "End Time" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Dark Mode" 22 | }, 23 | "enter_url": { 24 | "message": "Your Canvas url:" 25 | }, 26 | "card_grades": { 27 | "message": "Card Grades" 28 | }, 29 | "gradient_cards": { 30 | "message": "Gradient Cards" 31 | }, 32 | "condensed_cards": { 33 | "message": "Condensed Cards" 34 | }, 35 | "disable_color": { 36 | "message": "Disable Color Overlay" 37 | }, 38 | "card_assignments": { 39 | "message": "Card Assignments" 40 | }, 41 | "card_customization": { 42 | "message": "Cards" 43 | }, 44 | "custom_font": { 45 | "message": "Fonts" 46 | }, 47 | "useddmm": { 48 | "message": "Use dd/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Better todo list" 52 | }, 53 | "max_items": { 54 | "message": "Max Items: " 55 | }, 56 | "hover_preview": { 57 | "message": "Hover To Preview Details" 58 | }, 59 | "hide_completed": { 60 | "message": "Hide Completed" 61 | }, 62 | "24hrformat": { 63 | "message": "Use 24 hr Format" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Dashboard Notes" 67 | }, 68 | "gpa_calculator": { 69 | "message": "GPA Calculator" 70 | }, 71 | "gpa_settings": { 72 | "message": "GPA Settings" 73 | }, 74 | "grade_hover": { 75 | "message": "Show Only On Hover" 76 | }, 77 | "due": { 78 | "message": "Due" 79 | }, 80 | "card_colors": { 81 | "message": "Card Colors" 82 | }, 83 | "back": { 84 | "message": "Back" 85 | }, 86 | "more_options": { 87 | "message": "More Options" 88 | }, 89 | "manual_customization": { 90 | "message": "Manual Customization" 91 | }, 92 | "background_colors": { 93 | "message": "Background" 94 | }, 95 | "text_colors": { 96 | "message": "Text" 97 | }, 98 | "full_width": { 99 | "message": "Dashboard Full Width" 100 | }, 101 | "report_issue": { 102 | "message": "Report Issue" 103 | }, 104 | "themes": { 105 | "message": "Themes" 106 | }, 107 | "move_top": { 108 | "message": "Move To Top" 109 | }, 110 | "show_past_due": { 111 | "message": "Show Past Due" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Relative Due Dates" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Enter Multiple With A Comma)" 118 | }, 119 | "todo_remind": { 120 | "message": "Todo Reminders" 121 | }, 122 | "remlogo": { 123 | "message": "Remove Sidebar Logo" 124 | }, 125 | "hide_feedback": { 126 | "message": "Hide Recent Feedback" 127 | }, 128 | "tab_icons": { 129 | "message": "Color Coded Tab Icons" 130 | }, 131 | "todo_colors": { 132 | "message": "Use Card Colors" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Show Cumulative GPA" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Show Weighted GPA" 139 | }, 140 | "device_dark": { 141 | "message": "Use Device Dark Mode Settings" 142 | }, 143 | "presets": { 144 | "message": "Presets" 145 | }, 146 | "dark_lighter": { 147 | "message": "Lighter" 148 | }, 149 | "dark_light": { 150 | "message": "Light" 151 | }, 152 | "dark_default": { 153 | "message": "Default" 154 | }, 155 | "dark_dark": { 156 | "message": "Dark" 157 | }, 158 | "dark_darker": { 159 | "message": "Darker" 160 | }, 161 | "dark_mint": { 162 | "message": "Mint" 163 | }, 164 | "dark_blue": { 165 | "message": "Blue Tint" 166 | }, 167 | "dark_burn": { 168 | "message": "Eyeball Burn" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Unicorn" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Lightmode" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccin\n By Angel" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n By LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Pink\n By Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Coral\n By Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Sidebar Text" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Sidebar" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Solid" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Gradient" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Image" 202 | }, 203 | "dp_background_0": { 204 | "message": "Background Main" 205 | }, 206 | "dp_background_1": { 207 | "message": "Background Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "Background Other" 211 | }, 212 | "dp_borders": { 213 | "message": "Borders" 214 | }, 215 | "dp_links": { 216 | "message": "Links" 217 | }, 218 | "dp_text_0": { 219 | "message": "Text Main" 220 | }, 221 | "dp_text_1": { 222 | "message": "Text Other" 223 | }, 224 | "dp_text_2": { 225 | "message": "Text Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Dark Mode Fixer (Beta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "This Will Try To Fix Any Dark Mode Gaps On The Current Page." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Go" 235 | }, 236 | "fix_dm_text": { 237 | "message": "The Fixer Is Automatically Running On These Pages:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/es/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Mejor lienzo" 4 | }, 5 | "updates": { 6 | "message": "Actualizaciones" 7 | }, 8 | "dark_mode": { 9 | "message": "Modo oscuro" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Modo oscuro automático" 13 | }, 14 | "auto_start_time": { 15 | "message": "Hora de inicio" 16 | }, 17 | "auto_end_time": { 18 | "message": "Hora de finalización" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Editar modo oscuro" 22 | }, 23 | "enter_url": { 24 | "message": "Tu url de lienzo:" 25 | }, 26 | "card_grades": { 27 | "message": "Grados en tarjetas" 28 | }, 29 | "gradient_cards": { 30 | "message": "Tarjetas de degradado" 31 | }, 32 | "condensed_cards": { 33 | "message": "Tarjetas condensadas" 34 | }, 35 | "disable_color": { 36 | "message": "Deshabilitar la superposición de colores" 37 | }, 38 | "card_assignments": { 39 | "message": "Asignaciones de tarjetas" 40 | }, 41 | "card_customization": { 42 | "message": "Personalización de tarjetas" 43 | }, 44 | "custom_font": { 45 | "message": "Fuente personalizada" 46 | }, 47 | "useddmm": { 48 | "message": "Usar dd/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Mejor lista de tareas pendientes" 52 | }, 53 | "max_items": { 54 | "message": "Artículos máximos: " 55 | }, 56 | "hover_preview": { 57 | "message": "Pasa el cursor para obtener una vista previa de los detalles" 58 | }, 59 | "hide_completed": { 60 | "message": "Ocultar completado" 61 | }, 62 | "24hrformat": { 63 | "message": "Usar formato de 24 horas" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Notas del tablero" 67 | }, 68 | "gpa_calculator": { 69 | "message": "Calculadora GPA" 70 | }, 71 | "gpa_settings": { 72 | "message": "Configuración GPA" 73 | }, 74 | "grade_hover": { 75 | "message": "Mostrar solo al pasar el mouse" 76 | }, 77 | "due": { 78 | "message": "Pendiente" 79 | }, 80 | "card_colors": { 81 | "message": "Colores de la tarjeta" 82 | }, 83 | "back": { 84 | "message": "Atrás" 85 | }, 86 | "more_options": { 87 | "message": "Más opciones" 88 | }, 89 | "manual_customization": { 90 | "message": "Personalización manual" 91 | }, 92 | "background_colors": { 93 | "message": "Fondo" 94 | }, 95 | "text_colors": { 96 | "message": "Texto" 97 | }, 98 | "full_width": { 99 | "message": "Tablero de ancho completo" 100 | }, 101 | "report_issue": { 102 | "message": "Reportar un problema" 103 | }, 104 | "themes": { 105 | "message": "Temas" 106 | }, 107 | "move_top": { 108 | "message": "Moverse hacia arriba" 109 | }, 110 | "show_past_due": { 111 | "message": "Mostrar vencida" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Fechas pendientes relativas" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Ingrese varios con una coma)" 118 | }, 119 | "todo_remind": { 120 | "message": "Recordatorios de tareas pendientes" 121 | }, 122 | "remlogo": { 123 | "message": "Quitar el logo de la barra lateral" 124 | }, 125 | "hide_feedback": { 126 | "message": "Ocultar comentarios recientes" 127 | }, 128 | "tab_icons": { 129 | "message": "Iconos de pestañas codificados por colores" 130 | }, 131 | "todo_colors": { 132 | "message": "Usa colores de tarjeta" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Mostrar GPA acumulado" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Mostrar GPA ponderado" 139 | }, 140 | "device_dark": { 141 | "message": "Usar la configuración del modo oscuro del dispositivo" 142 | }, 143 | "presets": { 144 | "message": "Preajustes" 145 | }, 146 | "dark_lighter": { 147 | "message": "Más ligera" 148 | }, 149 | "dark_light": { 150 | "message": "Ligera" 151 | }, 152 | "dark_default": { 153 | "message": "Por defecto" 154 | }, 155 | "dark_dark": { 156 | "message": "Oscura" 157 | }, 158 | "dark_darker": { 159 | "message": "Más oscura" 160 | }, 161 | "dark_mint": { 162 | "message": "Menta" 163 | }, 164 | "dark_blue": { 165 | "message": "Tinte azul" 166 | }, 167 | "dark_burn": { 168 | "message": "Quemadura de globo ocular" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Unicornio" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Modo de luz" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catuchino\n por Ángel" 178 | }, 179 | "dark_sage": { 180 | "message": "Sage\n por LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Rosa\n por Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Coral\n por Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Texto de la barra lateral" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Barra lateral" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Sólida" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Gradiente" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Imagen" 202 | }, 203 | "dp_background_0": { 204 | "message": "Fondo principal" 205 | }, 206 | "dp_background_1": { 207 | "message": "Fondo alternativo" 208 | }, 209 | "dp_background_2": { 210 | "message": "Fondo Otra" 211 | }, 212 | "dp_borders": { 213 | "message": "Fronteras" 214 | }, 215 | "dp_links": { 216 | "message": "Campo de golf" 217 | }, 218 | "dp_text_0": { 219 | "message": "Texto principal" 220 | }, 221 | "dp_text_1": { 222 | "message": "Texto Otra" 223 | }, 224 | "dp_text_2": { 225 | "message": "Texto alternativo" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Reparador del modo oscuro (Beta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Esto intentará solucionar cualquier brecha del modo oscuro en la página actual." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Ir" 235 | }, 236 | "fix_dm_text": { 237 | "message": "El reparador se ejecuta automáticamente en estas páginas:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/fr/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Une meilleure toile" 4 | }, 5 | "updates": { 6 | "message": "Mises à jour" 7 | }, 8 | "dark_mode": { 9 | "message": "Mode sombre" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Mode sombre programmé" 13 | }, 14 | "auto_start_time": { 15 | "message": "Heure de début" 16 | }, 17 | "auto_end_time": { 18 | "message": "Fin des temps" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Mode sombre" 22 | }, 23 | "enter_url": { 24 | "message": "Votre url Toile:" 25 | }, 26 | "card_grades": { 27 | "message": "Notes des cartes" 28 | }, 29 | "gradient_cards": { 30 | "message": "Cartes dégradées" 31 | }, 32 | "condensed_cards": { 33 | "message": "Cartes condensées" 34 | }, 35 | "disable_color": { 36 | "message": "Désactiver la superposition de couleurs" 37 | }, 38 | "card_assignments": { 39 | "message": "Affectations des cartes" 40 | }, 41 | "card_customization": { 42 | "message": "Cartes" 43 | }, 44 | "custom_font": { 45 | "message": "Polices de caractères" 46 | }, 47 | "useddmm": { 48 | "message": "Utiliser jj/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Meilleure liste de choses à faire" 52 | }, 53 | "max_items": { 54 | "message": "Nombre maximal d'articles : " 55 | }, 56 | "hover_preview": { 57 | "message": "Survolez pour prévisualiser les détails" 58 | }, 59 | "hide_completed": { 60 | "message": "Masquer terminé" 61 | }, 62 | "24hrformat": { 63 | "message": "Utiliser le format 24 heures" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Notes du tableau de bord" 67 | }, 68 | "gpa_calculator": { 69 | "message": "Calculateur de GPA" 70 | }, 71 | "gpa_settings": { 72 | "message": "Paramètres GPA" 73 | }, 74 | "grade_hover": { 75 | "message": "Afficher uniquement au survol" 76 | }, 77 | "due": { 78 | "message": "Exigible" 79 | }, 80 | "card_colors": { 81 | "message": "Couleurs des cartes" 82 | }, 83 | "back": { 84 | "message": "Dos" 85 | }, 86 | "more_options": { 87 | "message": "Plus d'options" 88 | }, 89 | "manual_customization": { 90 | "message": "Personnalisation manuelle" 91 | }, 92 | "background_colors": { 93 | "message": "Arrière-plan" 94 | }, 95 | "text_colors": { 96 | "message": "Texte" 97 | }, 98 | "full_width": { 99 | "message": "Tableau de bord pleine largeur" 100 | }, 101 | "report_issue": { 102 | "message": "Signaler un problème" 103 | }, 104 | "themes": { 105 | "message": "Thèmes" 106 | }, 107 | "move_top": { 108 | "message": "Déplacer vers le haut" 109 | }, 110 | "show_past_due": { 111 | "message": "Afficher les arriérés" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Dates d'échéance relatives" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Entrez plusieurs avec une virgule)" 118 | }, 119 | "todo_remind": { 120 | "message": "Rappels de tâches à faire" 121 | }, 122 | "remlogo": { 123 | "message": "Supprimer le logo de la barre latérale" 124 | }, 125 | "hide_feedback": { 126 | "message": "Masquer les commentaires récents" 127 | }, 128 | "tab_icons": { 129 | "message": "Icônes d'onglets à code couleur" 130 | }, 131 | "todo_colors": { 132 | "message": "Utiliser les couleurs des cartes" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Afficher la moyenne cumulative" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Afficher la moyenne pondérée" 139 | }, 140 | "device_dark": { 141 | "message": "Utiliser les paramètres du mode sombre de l'appareil" 142 | }, 143 | "presets": { 144 | "message": "Préréglages" 145 | }, 146 | "dark_lighter": { 147 | "message": "Plus léger" 148 | }, 149 | "dark_light": { 150 | "message": "Lumière" 151 | }, 152 | "dark_default": { 153 | "message": "Défaut" 154 | }, 155 | "dark_dark": { 156 | "message": "Sombre" 157 | }, 158 | "dark_darker": { 159 | "message": "Plus sombre" 160 | }, 161 | "dark_mint": { 162 | "message": "Menthe" 163 | }, 164 | "dark_blue": { 165 | "message": "Teinte bleue" 166 | }, 167 | "dark_burn": { 168 | "message": "Brûlure du globe oculaire" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Licorne" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Mode clair" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccin\n Par Angel" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n Par LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Rose\n Par Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Corail\n Par Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Texte de la barre latérale" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Barre latérale" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Solide" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Pente" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Image" 202 | }, 203 | "dp_background_0": { 204 | "message": "Contexte principal" 205 | }, 206 | "dp_background_1": { 207 | "message": "Contexte Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "Contexte Autre" 211 | }, 212 | "dp_borders": { 213 | "message": "Frontières" 214 | }, 215 | "dp_links": { 216 | "message": "Links" 217 | }, 218 | "dp_text_0": { 219 | "message": "Texte principal" 220 | }, 221 | "dp_text_1": { 222 | "message": "Texte Autre" 223 | }, 224 | "dp_text_2": { 225 | "message": "Texte alternatif" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Correction du mode sombre (bêta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Cela tentera de corriger les éventuels écarts du mode sombre sur la page actuelle." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Aller" 235 | }, 236 | "fix_dm_text": { 237 | "message": "Le fixateur s'exécute automatiquement sur ces pages :" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/it/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Tela migliore" 4 | }, 5 | "updates": { 6 | "message": "Aggiornamenti" 7 | }, 8 | "dark_mode": { 9 | "message": "Modalità scura" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Modalità scura programmata" 13 | }, 14 | "auto_start_time": { 15 | "message": "Ora di inizio" 16 | }, 17 | "auto_end_time": { 18 | "message": "Ora di fine" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Modalità scura" 22 | }, 23 | "enter_url": { 24 | "message": "L'url della tua tela:" 25 | }, 26 | "card_grades": { 27 | "message": "Gradi delle carte" 28 | }, 29 | "gradient_cards": { 30 | "message": "Carte sfumate" 31 | }, 32 | "condensed_cards": { 33 | "message": "Carte condensate" 34 | }, 35 | "disable_color": { 36 | "message": "Disabilita sovrapposizione colore" 37 | }, 38 | "card_assignments": { 39 | "message": "Assegnazioni delle carte" 40 | }, 41 | "card_customization": { 42 | "message": "Carte" 43 | }, 44 | "custom_font": { 45 | "message": "Caratteri" 46 | }, 47 | "useddmm": { 48 | "message": "Usa gg/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Migliore lista delle cose da fare" 52 | }, 53 | "max_items": { 54 | "message": "Numero massimo di articoli: " 55 | }, 56 | "hover_preview": { 57 | "message": "Passa il mouse per visualizzare l'anteprima dei dettagli" 58 | }, 59 | "hide_completed": { 60 | "message": "Nascondi Completato" 61 | }, 62 | "24hrformat": { 63 | "message": "Usa il formato 24 ore" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Note del cruscotto" 67 | }, 68 | "gpa_calculator": { 69 | "message": "Calcolatrice GPA" 70 | }, 71 | "gpa_settings": { 72 | "message": "Impostazioni GPA" 73 | }, 74 | "grade_hover": { 75 | "message": "Mostra solo al passaggio del mouse" 76 | }, 77 | "due": { 78 | "message": "Dovuto" 79 | }, 80 | "card_colors": { 81 | "message": "Colori delle carte" 82 | }, 83 | "back": { 84 | "message": "Indietro" 85 | }, 86 | "more_options": { 87 | "message": "Altre opzioni" 88 | }, 89 | "manual_customization": { 90 | "message": "Personalizzazione manuale" 91 | }, 92 | "background_colors": { 93 | "message": "Sfondo" 94 | }, 95 | "text_colors": { 96 | "message": "Testo" 97 | }, 98 | "full_width": { 99 | "message": "Dashboard a tutta larghezza" 100 | }, 101 | "report_issue": { 102 | "message": "Segnala un problema" 103 | }, 104 | "themes": { 105 | "message": "Temi" 106 | }, 107 | "move_top": { 108 | "message": "Sposta in alto" 109 | }, 110 | "show_past_due": { 111 | "message": "Mostra scaduto" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Date di scadenza relative" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Inserisci più numeri con una virgola)" 118 | }, 119 | "todo_remind": { 120 | "message": "Promemoria delle cose da fare" 121 | }, 122 | "remlogo": { 123 | "message": "Rimuovi il logo della barra laterale" 124 | }, 125 | "hide_feedback": { 126 | "message": "Nascondi feedback recenti" 127 | }, 128 | "tab_icons": { 129 | "message": "Icone delle schede codificate a colori" 130 | }, 131 | "todo_colors": { 132 | "message": "Usa i colori delle carte" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Mostra GPA cumulativo" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Mostra GPA ponderato" 139 | }, 140 | "device_dark": { 141 | "message": "Utilizzare le impostazioni della modalità scura del dispositivo" 142 | }, 143 | "presets": { 144 | "message": "Preimpostazioni" 145 | }, 146 | "dark_lighter": { 147 | "message": "Più leggero" 148 | }, 149 | "dark_light": { 150 | "message": "Leggero" 151 | }, 152 | "dark_default": { 153 | "message": "Predefinito" 154 | }, 155 | "dark_dark": { 156 | "message": "Buio" 157 | }, 158 | "dark_darker": { 159 | "message": "Più scuro" 160 | }, 161 | "dark_mint": { 162 | "message": "Menta" 163 | }, 164 | "dark_blue": { 165 | "message": "Tinta blu" 166 | }, 167 | "dark_burn": { 168 | "message": "Bruciore del bulbo oculare" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Unicorno" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Modalità luce" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccino\n Per Angelo" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n Di LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Rosa\n Di Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Corallo\n Di Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Testo della barra laterale" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Barra laterale" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Solido" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Pendenza" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Immagine" 202 | }, 203 | "dp_background_0": { 204 | "message": "Contesto Principale" 205 | }, 206 | "dp_background_1": { 207 | "message": "Sfondo Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "Contesto Altro" 211 | }, 212 | "dp_borders": { 213 | "message": "Confini" 214 | }, 215 | "dp_links": { 216 | "message": "Collegamenti" 217 | }, 218 | "dp_text_0": { 219 | "message": "Testo principale" 220 | }, 221 | "dp_text_1": { 222 | "message": "Testo Altro" 223 | }, 224 | "dp_text_2": { 225 | "message": "Testo Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Correzione modalità scura (Beta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Questo cercherà di correggere eventuali lacune della modalità scura nella pagina corrente." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Andare" 235 | }, 236 | "fix_dm_text": { 237 | "message": "Il fissatore viene eseguito automaticamente su queste pagine:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/ja/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "より良いキャンバス" 4 | }, 5 | "updates": { 6 | "message": "アップデート" 7 | }, 8 | "dark_mode": { 9 | "message": "ダークモード" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "スケジュールされたダークモード" 13 | }, 14 | "auto_start_time": { 15 | "message": "開始時間" 16 | }, 17 | "auto_end_time": { 18 | "message": "終了時間" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "ダークモード" 22 | }, 23 | "enter_url": { 24 | "message": "あなたのキャンバスURL:" 25 | }, 26 | "card_grades": { 27 | "message": "カードのグレード" 28 | }, 29 | "gradient_cards": { 30 | "message": "グラデーションカード" 31 | }, 32 | "condensed_cards": { 33 | "message": "凝縮カード" 34 | }, 35 | "disable_color": { 36 | "message": "カラーオーバーレイを無効にする" 37 | }, 38 | "card_assignments": { 39 | "message": "カードの割り当て" 40 | }, 41 | "card_customization": { 42 | "message": "カード" 43 | }, 44 | "custom_font": { 45 | "message": "フォント" 46 | }, 47 | "useddmm": { 48 | "message": "を使用 dd/mm" 49 | }, 50 | "better_todo": { 51 | "message": "より良いToDoリスト" 52 | }, 53 | "max_items": { 54 | "message": "最大アイテム数: " 55 | }, 56 | "hover_preview": { 57 | "message": "詳細をプレビューするにはマウスを移動します" 58 | }, 59 | "hide_completed": { 60 | "message": "完了を非表示" 61 | }, 62 | "24hrformat": { 63 | "message": "24時間形式を使用する" 64 | }, 65 | "dashboard_notes": { 66 | "message": "ダッシュボードノート" 67 | }, 68 | "gpa_calculator": { 69 | "message": "GPA計算機" 70 | }, 71 | "gpa_settings": { 72 | "message": "GPA設定" 73 | }, 74 | "grade_hover": { 75 | "message": "ホバー時のみ表示" 76 | }, 77 | "due": { 78 | "message": "期限" 79 | }, 80 | "card_colors": { 81 | "message": "カードの色" 82 | }, 83 | "back": { 84 | "message": "戻る" 85 | }, 86 | "more_options": { 87 | "message": "その他のオプション" 88 | }, 89 | "manual_customization": { 90 | "message": "手動カスタマイズ" 91 | }, 92 | "background_colors": { 93 | "message": "背景" 94 | }, 95 | "text_colors": { 96 | "message": "文章" 97 | }, 98 | "full_width": { 99 | "message": "ダッシュボード全幅" 100 | }, 101 | "report_issue": { 102 | "message": "問題を報告" 103 | }, 104 | "themes": { 105 | "message": "テーマ" 106 | }, 107 | "move_top": { 108 | "message": "トップへ移動" 109 | }, 110 | "show_past_due": { 111 | "message": "期限超過を表示" 112 | }, 113 | "relative_due_dates": { 114 | "message": "相対的な期日" 115 | }, 116 | "enter_multiple": { 117 | "message": "(カンマで複数入力)" 118 | }, 119 | "todo_remind": { 120 | "message": "ToDoリマインダー" 121 | }, 122 | "remlogo": { 123 | "message": "サイドバーのロゴを削除" 124 | }, 125 | "hide_feedback": { 126 | "message": "最近のフィードバックを非表示" 127 | }, 128 | "tab_icons": { 129 | "message": "色分けされたタブアイコン" 130 | }, 131 | "todo_colors": { 132 | "message": "カードの色を使用する" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "累積GPAを表示" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "加重GPAを表示" 139 | }, 140 | "device_dark": { 141 | "message": "デバイスのダークモード設定を使用する" 142 | }, 143 | "presets": { 144 | "message": "プリセット" 145 | }, 146 | "dark_lighter": { 147 | "message": "ライター" 148 | }, 149 | "dark_light": { 150 | "message": "ライト" 151 | }, 152 | "dark_default": { 153 | "message": "デフォルト" 154 | }, 155 | "dark_dark": { 156 | "message": "暗い" 157 | }, 158 | "dark_darker": { 159 | "message": "暗い" 160 | }, 161 | "dark_mint": { 162 | "message": "ミント" 163 | }, 164 | "dark_blue": { 165 | "message": "青みがかった" 166 | }, 167 | "dark_burn": { 168 | "message": "眼球の火傷" 169 | }, 170 | "dark_unicorn": { 171 | "message": "ユニコーン" 172 | }, 173 | "dark_lightmode": { 174 | "message": "ライトモード" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccin\n 作者: Angel" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n By LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "ピンク\n By Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "コーラル\n スーパーチド作" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "サイドバーテキスト" 190 | }, 191 | "dp_sidebar": { 192 | "message": "サイドバー" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "固体" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "勾配" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "画像" 202 | }, 203 | "dp_background_0": { 204 | "message": "背景メイン" 205 | }, 206 | "dp_background_1": { 207 | "message": "背景の代替" 208 | }, 209 | "dp_background_2": { 210 | "message": "背景 その他" 211 | }, 212 | "dp_borders": { 213 | "message": "国境" 214 | }, 215 | "dp_links": { 216 | "message": "リンク" 217 | }, 218 | "dp_text_0": { 219 | "message": "テキストメイン" 220 | }, 221 | "dp_text_1": { 222 | "message": "テキストその他" 223 | }, 224 | "dp_text_2": { 225 | "message": "テキスト代替" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "ダークモード修正プログラム (ベータ版)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "これにより、現在のページ上のダーク モードのギャップが修正されます。" 232 | }, 233 | "fix_dm_btn": { 234 | "message": "行く" 235 | }, 236 | "fix_dm_text": { 237 | "message": "Fixer はこれらのページで自動的に実行されます:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/pt_PT/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Melhor tela" 4 | }, 5 | "updates": { 6 | "message": "Atualizações" 7 | }, 8 | "dark_mode": { 9 | "message": "Modo escuro" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Modo escuro programado" 13 | }, 14 | "auto_start_time": { 15 | "message": "Hora de início" 16 | }, 17 | "auto_end_time": { 18 | "message": "Fim dos tempos" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Modo escuro" 22 | }, 23 | "enter_url": { 24 | "message": "Url da sua tela:" 25 | }, 26 | "card_grades": { 27 | "message": "Notas de cartão" 28 | }, 29 | "gradient_cards": { 30 | "message": "Cartões de Gradiente" 31 | }, 32 | "condensed_cards": { 33 | "message": "Cartões condensados" 34 | }, 35 | "disable_color": { 36 | "message": "Desativar sobreposição de cores" 37 | }, 38 | "card_assignments": { 39 | "message": "Atribuições de cartas" 40 | }, 41 | "card_customization": { 42 | "message": "Cartões" 43 | }, 44 | "custom_font": { 45 | "message": "Fontes" 46 | }, 47 | "useddmm": { 48 | "message": "Usar dd/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Melhor lista de tarefas" 52 | }, 53 | "max_items": { 54 | "message": "Itens máximos: " 55 | }, 56 | "hover_preview": { 57 | "message": "Passe o mouse para visualizar os detalhes" 58 | }, 59 | "hide_completed": { 60 | "message": "Ocultar Concluído" 61 | }, 62 | "24hrformat": { 63 | "message": "Use o formato de 24 horas" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Notas do painel" 67 | }, 68 | "gpa_calculator": { 69 | "message": "Calculadora de GPA" 70 | }, 71 | "gpa_settings": { 72 | "message": "Configurações de GPA" 73 | }, 74 | "grade_hover": { 75 | "message": "Mostrar apenas ao passar o mouse" 76 | }, 77 | "due": { 78 | "message": "Devido" 79 | }, 80 | "card_colors": { 81 | "message": "Cores do cartão" 82 | }, 83 | "back": { 84 | "message": "Voltar" 85 | }, 86 | "more_options": { 87 | "message": "Mais opções" 88 | }, 89 | "manual_customization": { 90 | "message": "Personalização manual" 91 | }, 92 | "background_colors": { 93 | "message": "Fundo" 94 | }, 95 | "text_colors": { 96 | "message": "Texto" 97 | }, 98 | "full_width": { 99 | "message": "Painel de instrumentos de largura total" 100 | }, 101 | "report_issue": { 102 | "message": "Relatar problema" 103 | }, 104 | "themes": { 105 | "message": "Temas" 106 | }, 107 | "move_top": { 108 | "message": "Mover para o topo" 109 | }, 110 | "show_past_due": { 111 | "message": "Mostrar Vencido" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Datas de vencimento relativas" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Digite vários com uma vírgula)" 118 | }, 119 | "todo_remind": { 120 | "message": "Lembretes de tarefas" 121 | }, 122 | "remlogo": { 123 | "message": "Remover logotipo da barra lateral" 124 | }, 125 | "hide_feedback": { 126 | "message": "Ocultar comentários recentes" 127 | }, 128 | "tab_icons": { 129 | "message": "Ícones de guia codificados por cores" 130 | }, 131 | "todo_colors": { 132 | "message": "Use cores de cartas" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Mostrar GPA cumulativo" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Mostrar GPA ponderado" 139 | }, 140 | "device_dark": { 141 | "message": "Usar as configurações do modo escuro do dispositivo" 142 | }, 143 | "presets": { 144 | "message": "Predefinições" 145 | }, 146 | "dark_lighter": { 147 | "message": "Isqueiro" 148 | }, 149 | "dark_light": { 150 | "message": "Luz" 151 | }, 152 | "dark_default": { 153 | "message": "Padrão" 154 | }, 155 | "dark_dark": { 156 | "message": "Escuro" 157 | }, 158 | "dark_darker": { 159 | "message": "Mais escuro" 160 | }, 161 | "dark_mint": { 162 | "message": "Hortelã" 163 | }, 164 | "dark_blue": { 165 | "message": "Matiz Azul" 166 | }, 167 | "dark_burn": { 168 | "message": "Queimadura no globo ocular" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Unicórnio" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Modo de luz" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catpuccina\n Por anjo" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n Por LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Rosa\n Por Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Coral\n Por Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Texto da barra lateral" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Barra lateral" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Sólido" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Gradiente" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Imagem" 202 | }, 203 | "dp_background_0": { 204 | "message": "Contexto principal" 205 | }, 206 | "dp_background_1": { 207 | "message": "Alt de fundo" 208 | }, 209 | "dp_background_2": { 210 | "message": "Antecedentes Outros" 211 | }, 212 | "dp_borders": { 213 | "message": "Fronteiras" 214 | }, 215 | "dp_links": { 216 | "message": "Ligações" 217 | }, 218 | "dp_text_0": { 219 | "message": "Texto principal" 220 | }, 221 | "dp_text_1": { 222 | "message": "Texto Outro" 223 | }, 224 | "dp_text_2": { 225 | "message": "Texto Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Corretor de modo escuro (Beta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Isso tentará corrigir quaisquer lacunas do Modo Escuro na página atual." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Ir" 235 | }, 236 | "fix_dm_text": { 237 | "message": "O Fixer está sendo executado automaticamente nestas páginas:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/ru/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Лучший холст" 4 | }, 5 | "updates": { 6 | "message": "Обновления" 7 | }, 8 | "dark_mode": { 9 | "message": "Темный режим" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Запланированный темный режим" 13 | }, 14 | "auto_start_time": { 15 | "message": "Время начала" 16 | }, 17 | "auto_end_time": { 18 | "message": "Время окончания" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Темный режим" 22 | }, 23 | "enter_url": { 24 | "message": "Url-адрес вашего холста:" 25 | }, 26 | "card_grades": { 27 | "message": "Оценки карт" 28 | }, 29 | "gradient_cards": { 30 | "message": "Градиентные карты" 31 | }, 32 | "condensed_cards": { 33 | "message": "Сжатые карты" 34 | }, 35 | "disable_color": { 36 | "message": "Отключить наложение цвета" 37 | }, 38 | "card_assignments": { 39 | "message": "Задания карт" 40 | }, 41 | "card_customization": { 42 | "message": "Карты" 43 | }, 44 | "custom_font": { 45 | "message": "Шрифты" 46 | }, 47 | "useddmm": { 48 | "message": "Используйте дд/мм" 49 | }, 50 | "better_todo": { 51 | "message": "Лучший список дел" 52 | }, 53 | "max_items": { 54 | "message": "Максимальное количество предметов: " 55 | }, 56 | "hover_preview": { 57 | "message": "Наведите курсор, чтобы просмотреть детали" 58 | }, 59 | "hide_completed": { 60 | "message": "Скрыть Завершено" 61 | }, 62 | "24hrformat": { 63 | "message": "Использовать 24-часовой формат" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Заметки на панели инструментов" 67 | }, 68 | "gpa_calculator": { 69 | "message": "Калькулятор среднего балла" 70 | }, 71 | "gpa_settings": { 72 | "message": "Настройки среднего балла" 73 | }, 74 | "grade_hover": { 75 | "message": "Показывать только при наведении" 76 | }, 77 | "due": { 78 | "message": "Должный" 79 | }, 80 | "card_colors": { 81 | "message": "Цвета карт" 82 | }, 83 | "back": { 84 | "message": "Назад" 85 | }, 86 | "more_options": { 87 | "message": "Больше вариантов" 88 | }, 89 | "manual_customization": { 90 | "message": "Ручная настройка" 91 | }, 92 | "background_colors": { 93 | "message": "Фон" 94 | }, 95 | "text_colors": { 96 | "message": "Текст" 97 | }, 98 | "full_width": { 99 | "message": "Приборная панель на всю ширину" 100 | }, 101 | "report_issue": { 102 | "message": "Сообщить о проблеме" 103 | }, 104 | "themes": { 105 | "message": "Темы" 106 | }, 107 | "move_top": { 108 | "message": "Переместить наверх" 109 | }, 110 | "show_past_due": { 111 | "message": "Показать просроченные" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Относительные сроки выполнения" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Введите несколько через запятую)" 118 | }, 119 | "todo_remind": { 120 | "message": "Напоминания о задачах" 121 | }, 122 | "remlogo": { 123 | "message": "Удалить логотип боковой панели" 124 | }, 125 | "hide_feedback": { 126 | "message": "Скрыть последние отзывы" 127 | }, 128 | "tab_icons": { 129 | "message": "Цветные значки вкладок" 130 | }, 131 | "todo_colors": { 132 | "message": "Используйте цвета карт" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Показать накопленный средний балл" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Показать взвешенный средний балл" 139 | }, 140 | "device_dark": { 141 | "message": "Использовать настройки темного режима устройства" 142 | }, 143 | "presets": { 144 | "message": "Пресеты" 145 | }, 146 | "dark_lighter": { 147 | "message": "Зажигалка" 148 | }, 149 | "dark_light": { 150 | "message": "Свет" 151 | }, 152 | "dark_default": { 153 | "message": "По умолчанию" 154 | }, 155 | "dark_dark": { 156 | "message": "Темный" 157 | }, 158 | "dark_darker": { 159 | "message": "Темнее" 160 | }, 161 | "dark_mint": { 162 | "message": "Мята" 163 | }, 164 | "dark_blue": { 165 | "message": "Синий оттенок" 166 | }, 167 | "dark_burn": { 168 | "message": "Ожог глазного яблока" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Единорог" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Lightmode" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccin\n К Ангел" 178 | }, 179 | "dark_sage": { 180 | "message": "Сабия\n Автор: LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Розовый\n Автор Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Коралл\n Автор: Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Текст боковой панели" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Боковая панель" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Твердый" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Градиент" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Изображение" 202 | }, 203 | "dp_background_0": { 204 | "message": "Фон Основной" 205 | }, 206 | "dp_background_1": { 207 | "message": "Фон альт" 208 | }, 209 | "dp_background_2": { 210 | "message": "Фон Другое" 211 | }, 212 | "dp_borders": { 213 | "message": "Границы" 214 | }, 215 | "dp_links": { 216 | "message": "Ссылки" 217 | }, 218 | "dp_text_0": { 219 | "message": "Текст Основной" 220 | }, 221 | "dp_text_1": { 222 | "message": "Текст Другое" 223 | }, 224 | "dp_text_2": { 225 | "message": "Текст Альтернативный" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Dark Mode Fixer (бета-версия)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Это позволит исправить любые пробелы темного режима на текущей странице." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Идти" 235 | }, 236 | "fix_dm_text": { 237 | "message": "Fixer автоматически запускается на этих страницах:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/sv/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "Bättre Canvas" 4 | }, 5 | "updates": { 6 | "message": "Uppdateringar" 7 | }, 8 | "dark_mode": { 9 | "message": "Mörkt läge" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "Schemalagt mörkt läge" 13 | }, 14 | "auto_start_time": { 15 | "message": "Starttid" 16 | }, 17 | "auto_end_time": { 18 | "message": "Sluttid" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "Mörkt läge" 22 | }, 23 | "enter_url": { 24 | "message": "Din canvas-url:" 25 | }, 26 | "card_grades": { 27 | "message": "Kortbetyg" 28 | }, 29 | "gradient_cards": { 30 | "message": "Gradientkort" 31 | }, 32 | "condensed_cards": { 33 | "message": "Kondenserade kort" 34 | }, 35 | "disable_color": { 36 | "message": "Inaktivera färgöverlägg" 37 | }, 38 | "card_assignments": { 39 | "message": "Kortuppdrag" 40 | }, 41 | "card_customization": { 42 | "message": "Kort" 43 | }, 44 | "custom_font": { 45 | "message": "Teckensnitt" 46 | }, 47 | "useddmm": { 48 | "message": "Använd dd/mm" 49 | }, 50 | "better_todo": { 51 | "message": "Bättre att göra-lista" 52 | }, 53 | "max_items": { 54 | "message": "Max artiklar: " 55 | }, 56 | "hover_preview": { 57 | "message": "Håll muspekaren för att förhandsgranska detaljer" 58 | }, 59 | "hide_completed": { 60 | "message": "Göm slutförd" 61 | }, 62 | "24hrformat": { 63 | "message": "Använd 24 timmars format" 64 | }, 65 | "dashboard_notes": { 66 | "message": "Anteckningar på instrumentpanelen" 67 | }, 68 | "gpa_calculator": { 69 | "message": "GPA-kalkylator" 70 | }, 71 | "gpa_settings": { 72 | "message": "GPA-inställningar" 73 | }, 74 | "grade_hover": { 75 | "message": "Visa endast vid svävning" 76 | }, 77 | "due": { 78 | "message": "Förfaller" 79 | }, 80 | "card_colors": { 81 | "message": "Kort färger" 82 | }, 83 | "back": { 84 | "message": "Tillbaka" 85 | }, 86 | "more_options": { 87 | "message": "Fler alternativ" 88 | }, 89 | "manual_customization": { 90 | "message": "Manuell anpassning" 91 | }, 92 | "background_colors": { 93 | "message": "Bakgrund" 94 | }, 95 | "text_colors": { 96 | "message": "Text" 97 | }, 98 | "full_width": { 99 | "message": "Instrumentpanel i full bredd" 100 | }, 101 | "report_issue": { 102 | "message": "Rapportera problem" 103 | }, 104 | "themes": { 105 | "message": "Teman" 106 | }, 107 | "move_top": { 108 | "message": "Flytta till toppen" 109 | }, 110 | "show_past_due": { 111 | "message": "Visa förfallna" 112 | }, 113 | "relative_due_dates": { 114 | "message": "Relativa förfallodatum" 115 | }, 116 | "enter_multiple": { 117 | "message": "(Ange flera med komma)" 118 | }, 119 | "todo_remind": { 120 | "message": "Påminnelser om att göra" 121 | }, 122 | "remlogo": { 123 | "message": "Ta bort Sidebar-logotypen" 124 | }, 125 | "hide_feedback": { 126 | "message": "Dölj senaste feedback" 127 | }, 128 | "tab_icons": { 129 | "message": "Färgkodade flikikoner" 130 | }, 131 | "todo_colors": { 132 | "message": "Använd kortfärger" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "Visa kumulativ GPA" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "Visa viktad GPA" 139 | }, 140 | "device_dark": { 141 | "message": "Använd inställningarna för enhetens mörka läge" 142 | }, 143 | "presets": { 144 | "message": "Förinställningar" 145 | }, 146 | "dark_lighter": { 147 | "message": "Tändare" 148 | }, 149 | "dark_light": { 150 | "message": "Ljus" 151 | }, 152 | "dark_default": { 153 | "message": "Standard" 154 | }, 155 | "dark_dark": { 156 | "message": "Mörk" 157 | }, 158 | "dark_darker": { 159 | "message": "Mörkare" 160 | }, 161 | "dark_mint": { 162 | "message": "Mynta" 163 | }, 164 | "dark_blue": { 165 | "message": "Blå nyans" 166 | }, 167 | "dark_burn": { 168 | "message": "Bränna ögongloben" 169 | }, 170 | "dark_unicorn": { 171 | "message": "Enhörning" 172 | }, 173 | "dark_lightmode": { 174 | "message": "Ljusläge" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "Catppuccin\n Av Angel" 178 | }, 179 | "dark_sage": { 180 | "message": "Sabia\n Av LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "Rosa\n Av Sayde" 184 | }, 185 | "dark_coral": { 186 | "message": "Korall\n Av Superchido" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "Sidofältstext" 190 | }, 191 | "dp_sidebar": { 192 | "message": "Sidofält" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "Fast" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "Lutning" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "Bild" 202 | }, 203 | "dp_background_0": { 204 | "message": "Bakgrund Huvud" 205 | }, 206 | "dp_background_1": { 207 | "message": "Bakgrund Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "Bakgrund Annat" 211 | }, 212 | "dp_borders": { 213 | "message": "Gränser" 214 | }, 215 | "dp_links": { 216 | "message": "Länkar" 217 | }, 218 | "dp_text_0": { 219 | "message": "Ordalydelse huvudsaklig" 220 | }, 221 | "dp_text_1": { 222 | "message": "Text Annat" 223 | }, 224 | "dp_text_2": { 225 | "message": "Text Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "Mörk Läge Fixare (Beta)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "Detta kommer att försöka fixa eventuella luckor i mörkt läge på den aktuella sidan." 232 | }, 233 | "fix_dm_btn": { 234 | "message": "Gå" 235 | }, 236 | "fix_dm_text": { 237 | "message": "Fixern körs automatiskt på dessa sidor:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "更好的画布" 4 | }, 5 | "updates": { 6 | "message": "更新" 7 | }, 8 | "dark_mode": { 9 | "message": "暗色模式" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "预定的深色模式" 13 | }, 14 | "auto_start_time": { 15 | "message": "开始时间" 16 | }, 17 | "auto_end_time": { 18 | "message": "结束时间" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "深色模式" 22 | }, 23 | "enter_url": { 24 | "message": "您的画布网址:" 25 | }, 26 | "card_grades": { 27 | "message": "卡牌等级" 28 | }, 29 | "gradient_cards": { 30 | "message": "渐变卡" 31 | }, 32 | "condensed_cards": { 33 | "message": "浓缩卡" 34 | }, 35 | "disable_color": { 36 | "message": "禁用颜色叠加" 37 | }, 38 | "card_assignments": { 39 | "message": "卡分配" 40 | }, 41 | "card_customization": { 42 | "message": "牌" 43 | }, 44 | "custom_font": { 45 | "message": "字体" 46 | }, 47 | "useddmm": { 48 | "message": "使用日/毫米" 49 | }, 50 | "better_todo": { 51 | "message": "更好的待办事项列表" 52 | }, 53 | "max_items": { 54 | "message": "最大物品数: " 55 | }, 56 | "hover_preview": { 57 | "message": "将鼠标悬停以预览详细信息" 58 | }, 59 | "hide_completed": { 60 | "message": "隐藏已完成" 61 | }, 62 | "24hrformat": { 63 | "message": "使用 24 小时格式" 64 | }, 65 | "dashboard_notes": { 66 | "message": "仪表板注释" 67 | }, 68 | "gpa_calculator": { 69 | "message": "平均绩点计算器" 70 | }, 71 | "gpa_settings": { 72 | "message": "平均绩点设置" 73 | }, 74 | "grade_hover": { 75 | "message": "仅在悬停时显示" 76 | }, 77 | "due": { 78 | "message": "到期的" 79 | }, 80 | "card_colors": { 81 | "message": "卡片颜色" 82 | }, 83 | "back": { 84 | "message": "后退" 85 | }, 86 | "more_options": { 87 | "message": "更多选择" 88 | }, 89 | "manual_customization": { 90 | "message": "手动定制" 91 | }, 92 | "background_colors": { 93 | "message": "背景" 94 | }, 95 | "text_colors": { 96 | "message": "文本" 97 | }, 98 | "full_width": { 99 | "message": "仪表板全宽" 100 | }, 101 | "report_issue": { 102 | "message": "报告问题" 103 | }, 104 | "themes": { 105 | "message": "主题" 106 | }, 107 | "move_top": { 108 | "message": "移至顶部" 109 | }, 110 | "show_past_due": { 111 | "message": "显示逾期" 112 | }, 113 | "relative_due_dates": { 114 | "message": "相对到期日" 115 | }, 116 | "enter_multiple": { 117 | "message": "(用逗号输入多个)" 118 | }, 119 | "todo_remind": { 120 | "message": "待办事项提醒" 121 | }, 122 | "remlogo": { 123 | "message": "删除侧边栏徽标" 124 | }, 125 | "hide_feedback": { 126 | "message": "隐藏最近的反馈" 127 | }, 128 | "tab_icons": { 129 | "message": "颜色编码选项卡图标" 130 | }, 131 | "todo_colors": { 132 | "message": "使用卡片颜色" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "显示累积GPA" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "显示权重GPA" 139 | }, 140 | "device_dark": { 141 | "message": "使用设备暗色模式设置" 142 | }, 143 | "presets": { 144 | "message": "预设值" 145 | }, 146 | "dark_lighter": { 147 | "message": "灯光" 148 | }, 149 | "dark_light": { 150 | "message": "亮色的" 151 | }, 152 | "dark_default": { 153 | "message": "默认设置" 154 | }, 155 | "dark_dark": { 156 | "message": "深色" 157 | }, 158 | "dark_darker": { 159 | "message": "较暗的" 160 | }, 161 | "dark_mint": { 162 | "message": "分钟数" 163 | }, 164 | "dark_blue": { 165 | "message": "蓝色调" 166 | }, 167 | "dark_burn": { 168 | "message": "眼球烧伤" 169 | }, 170 | "dark_unicorn": { 171 | "message": "独角兽人" 172 | }, 173 | "dark_lightmode": { 174 | "message": "浅色模式" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "卡普布辛\n 由天使" 178 | }, 179 | "dark_sage": { 180 | "message": "萨比亚\n 通过 LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "粉色的\n 通过赛德" 184 | }, 185 | "dark_coral": { 186 | "message": "珊瑚\n 通过 超级奇多" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "侧边栏文本" 190 | }, 191 | "dp_sidebar": { 192 | "message": "侧边栏" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "坚硬的" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "渐变" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "图片" 202 | }, 203 | "dp_background_0": { 204 | "message": "主要背景" 205 | }, 206 | "dp_background_1": { 207 | "message": "背景Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "其它背景" 211 | }, 212 | "dp_borders": { 213 | "message": "边框" 214 | }, 215 | "dp_links": { 216 | "message": "链接" 217 | }, 218 | "dp_text_0": { 219 | "message": "主要文本" 220 | }, 221 | "dp_text_1": { 222 | "message": "其它文本" 223 | }, 224 | "dp_text_2": { 225 | "message": "文本Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "深色模式修复程序 (测试版)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "这将尝试修复当前页面上的任何暗模式间隙。" 232 | }, 233 | "fix_dm_btn": { 234 | "message": "去" 235 | }, 236 | "fix_dm_text": { 237 | "message": "修复程序会自动在这些页面上运行:" 238 | } 239 | } -------------------------------------------------------------------------------- /_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "better_canvas": { 3 | "message": "更好的画布" 4 | }, 5 | "updates": { 6 | "message": "更新" 7 | }, 8 | "dark_mode": { 9 | "message": "暗色模式" 10 | }, 11 | "automatic_dark_mode": { 12 | "message": "预定的深色模式" 13 | }, 14 | "auto_start_time": { 15 | "message": "开始时间" 16 | }, 17 | "auto_end_time": { 18 | "message": "结束时间" 19 | }, 20 | "edit_dark_mode": { 21 | "message": "深色模式" 22 | }, 23 | "enter_url": { 24 | "message": "您的画布网址:" 25 | }, 26 | "card_grades": { 27 | "message": "卡牌等级" 28 | }, 29 | "gradient_cards": { 30 | "message": "渐变卡" 31 | }, 32 | "condensed_cards": { 33 | "message": "浓缩卡" 34 | }, 35 | "disable_color": { 36 | "message": "禁用颜色叠加" 37 | }, 38 | "card_assignments": { 39 | "message": "卡分配" 40 | }, 41 | "card_customization": { 42 | "message": "牌" 43 | }, 44 | "custom_font": { 45 | "message": "字体" 46 | }, 47 | "useddmm": { 48 | "message": "使用日/毫米" 49 | }, 50 | "better_todo": { 51 | "message": "更好的待办事项列表" 52 | }, 53 | "max_items": { 54 | "message": "最大物品数: " 55 | }, 56 | "hover_preview": { 57 | "message": "将鼠标悬停以预览详细信息" 58 | }, 59 | "hide_completed": { 60 | "message": "隐藏已完成" 61 | }, 62 | "24hrformat": { 63 | "message": "使用 24 小时格式" 64 | }, 65 | "dashboard_notes": { 66 | "message": "仪表板注释" 67 | }, 68 | "gpa_calculator": { 69 | "message": "平均绩点计算器" 70 | }, 71 | "gpa_settings": { 72 | "message": "平均绩点设置" 73 | }, 74 | "grade_hover": { 75 | "message": "仅在悬停时显示" 76 | }, 77 | "due": { 78 | "message": "到期的" 79 | }, 80 | "card_colors": { 81 | "message": "卡片颜色" 82 | }, 83 | "back": { 84 | "message": "后退" 85 | }, 86 | "more_options": { 87 | "message": "更多选择" 88 | }, 89 | "manual_customization": { 90 | "message": "手动定制" 91 | }, 92 | "background_colors": { 93 | "message": "背景" 94 | }, 95 | "text_colors": { 96 | "message": "文本" 97 | }, 98 | "full_width": { 99 | "message": "仪表板全宽" 100 | }, 101 | "report_issue": { 102 | "message": "报告问题" 103 | }, 104 | "themes": { 105 | "message": "主题" 106 | }, 107 | "move_top": { 108 | "message": "移至顶部" 109 | }, 110 | "show_past_due": { 111 | "message": "显示逾期" 112 | }, 113 | "relative_due_dates": { 114 | "message": "相对到期日" 115 | }, 116 | "enter_multiple": { 117 | "message": "(用逗号输入多个)" 118 | }, 119 | "todo_remind": { 120 | "message": "待办事项提醒" 121 | }, 122 | "remlogo": { 123 | "message": "删除侧边栏徽标" 124 | }, 125 | "hide_feedback": { 126 | "message": "隐藏最近的反馈" 127 | }, 128 | "tab_icons": { 129 | "message": "颜色编码选项卡图标" 130 | }, 131 | "todo_colors": { 132 | "message": "使用卡片颜色" 133 | }, 134 | "gpa_calc_cumulative": { 135 | "message": "显示累积GPA" 136 | }, 137 | "gpa_calc_weighted": { 138 | "message": "显示权重GPA" 139 | }, 140 | "device_dark": { 141 | "message": "使用设备暗色模式设置" 142 | }, 143 | "presets": { 144 | "message": "预设值" 145 | }, 146 | "dark_lighter": { 147 | "message": "灯光" 148 | }, 149 | "dark_light": { 150 | "message": "亮色的" 151 | }, 152 | "dark_default": { 153 | "message": "默认设置" 154 | }, 155 | "dark_dark": { 156 | "message": "深色" 157 | }, 158 | "dark_darker": { 159 | "message": "较暗的" 160 | }, 161 | "dark_mint": { 162 | "message": "分钟数" 163 | }, 164 | "dark_blue": { 165 | "message": "蓝色调" 166 | }, 167 | "dark_burn": { 168 | "message": "眼球烧伤" 169 | }, 170 | "dark_unicorn": { 171 | "message": "独角兽人" 172 | }, 173 | "dark_lightmode": { 174 | "message": "浅色模式" 175 | }, 176 | "dark_catppuccin": { 177 | "message": "卡普布辛\n 由天使" 178 | }, 179 | "dark_sage": { 180 | "message": "萨比亚\n 通过 LivDoesDevStuf" 181 | }, 182 | "dark_pink": { 183 | "message": "粉色的\n 通过赛德" 184 | }, 185 | "dark_coral": { 186 | "message": "珊瑚\n 通过 超级奇多" 187 | }, 188 | "dp_sidebar_text": { 189 | "message": "侧边栏文本" 190 | }, 191 | "dp_sidebar": { 192 | "message": "侧边栏" 193 | }, 194 | "radio_sidebar_solid": { 195 | "message": "坚硬的" 196 | }, 197 | "radio_sidebar_gradient": { 198 | "message": "渐变" 199 | }, 200 | "radio_sidebar_image": { 201 | "message": "图片" 202 | }, 203 | "dp_background_0": { 204 | "message": "主要背景" 205 | }, 206 | "dp_background_1": { 207 | "message": "背景Alt" 208 | }, 209 | "dp_background_2": { 210 | "message": "其它背景" 211 | }, 212 | "dp_borders": { 213 | "message": "边框" 214 | }, 215 | "dp_links": { 216 | "message": "链接" 217 | }, 218 | "dp_text_0": { 219 | "message": "主要文本" 220 | }, 221 | "dp_text_1": { 222 | "message": "其它文本" 223 | }, 224 | "dp_text_2": { 225 | "message": "文本Alt" 226 | }, 227 | "dark_mode_fixer": { 228 | "message": "深色模式修复程序 (测试版)" 229 | }, 230 | "dark_mode_fixer_text": { 231 | "message": "这将尝试修复当前页面上的任何暗模式间隙。" 232 | }, 233 | "fix_dm_btn": { 234 | "message": "去" 235 | }, 236 | "fix_dm_text": { 237 | "message": "修复程序会自动在这些页面上运行:" 238 | } 239 | } -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /_locales/en/*.json 3 | translation: /_locales/%locale%/%original_file_name% 4 | -------------------------------------------------------------------------------- /css/content.css: -------------------------------------------------------------------------------- 1 | .extension-gpa{font-size:1.8em;font-weight:700;padding-top:8px;border-style:none!important;} 2 | .extension-weight_select{display:inline-block;margin:0;} 3 | .hypodivcalc span {font-weight: bold} 4 | .hypodivcalc{display: flex;min-width:calc(33.33% - 50px);box-shadow: #9da5ab80 0px 2px 5px;align-items:center;background-color:#eee;border-radius:7px;margin:10px 5px 0;padding:20px;width:calc(33.33% - 50px);} 5 | #grade-summary-content ~ .extension-calcgpa{font-size:1.2em;font-weight:700;} 6 | .hypocalcform span{font-weight:700;min-width:50%;} 7 | .ic-DashboardCard__header_hero {border:0!important} 8 | .bettercanvas-completed{text-decoration:line-through;} 9 | .bettercanvas-completed a{text-decoration:line-through;} 10 | .extension-embed-hidden {display: none!important} 11 | .extension-linkpreview {background-color:#eee;border:none;border-radius:7px;padding:5px 15px;color:#6C757C;font-weight:bold;box-shadow: #9da5ab80 0px 2px 5px;margin: 5px 2px} 12 | .extension-linkpreview:hover {background-color:#e6e6e6;} 13 | .extension-linkpreview:focus {outline: none} 14 | .hypocalcform-collector {display: flex;flex-wrap:wrap;} 15 | .extension-aldue ~ .extension-al{font-size: 40px;background-color: red;} 16 | .gpachanger-percentage {margin: 0 8px 0 4px;font-size:1.2em;font-weight: bold} 17 | .extension-update {box-shadow: 0 2px 5px rgb(0 0 0 / 30%);opacity: .9;border-radius: 3px;color: #000;padding: 20px;z-index:100;position: absolute;width: 360px; height: 192px; background-color: #fff;top: 0; bottom: 0; left: 0; right: 0; margin: auto;} 18 | .extension-updateclose {position:absolute;top:5px;right:5px;border:none;background:none;color: #000!important;font-size: 32px;padding: 5px;} 19 | .extension-skeleton {height:36px;display:flex;align-items:center;margin-bottom:5px;} 20 | .extension-skeleton-text {margin-left: 18px;background: #ededed;width: 160px;height: 16px;animation: blink .5s infinite;} 21 | .extension-gpaOptions {display:flex;align-items:center;margin:21px 0;} 22 | .bettercanvas-export-output {position: fixed;height:100vh;width:100vw;top:0;left:0;z-index:10000;background:#000000c7;display:flex;align-items:center;justify-content:center} 23 | .bettercanvas-export-copy { font-size:12px;white-space: pre-wrap;max-height:80vh;overflow:auto;padding:8px} 24 | .bettercanvas-export-output-inner {width: 50%;background:#000;color:#fff;} 25 | .bettercanvas-card-container {padding-bottom: 4px;} 26 | .bettercanvas-assignment-container {margin: 0;padding:0;color: var(--ic-brand-font-color-dark-lightened-30);display: flex;justify-content:space-between;font-size:14px;align-items: center;transition:.2s all;} 27 | .bettercanvas-card-header-container {align-items: center;display: flex;justify-content: space-between;padding: 0 18px;color:var(--ic-brand-font-color-dark-lightened-30);font-size:16px;font-weight:700;margin: 0;} 28 | .bettercanvas-card-header-container h3, .bettercanvas-card-header-container a{font-size: 16px;font-weight: bold;} 29 | .bettercanvas-card-header {color: var(--ic-brand-font-color-dark-lightened-30);margin-block:0;} 30 | .bettercanvas-card-grade {position: absolute;top: 15px;left: 15px;background: #161616;padding: 2px 9px;border-radius: 200px;color: var(--ic-brand-font-color-dark-lightened-30);background: #fff;transition:.2s opacity;} 31 | .bettercanvas-card-grade.bettercanvas-hover-only {opacity: 0%;} 32 | .ic-DashboardCard:hover .bettercanvas-card-grade.bettercanvas-hover-only {opacity: 100%} 33 | .bettercanvas-assignment-container:hover {background: #eee;cursor: pointer;color: var(--ic-brand-font-color-dark-lightened-30);} 34 | .bettercanvas-assignment-link {flex: 1;text-decoration:none;margin: 0;padding:8px 18px;word-break: break-word;color:var(--ic-brand-font-color-dark-lightened-30)} 35 | .bettercanvas-assignment-dueat {padding: 4px 8px;margin-right: 10px;border-radius: 4px;} 36 | .bettercanvas-assignment-dueat:hover {box-shadow: 0 1px 4px #000!important} 37 | .bettercanvas-skeleton-text {background: #ededed;width: 160px;height: 16px;animation: blink .5s infinite;margin-left: 18px;margin-bottom: 12px;margin-top: 8px;} 38 | .bettercanvas-gpa { 39 | overflow: hidden; 40 | display: none; 41 | margin: 36px; 42 | box-sizing: border-box; 43 | border-radius: 4px; 44 | font-size: 13px; 45 | padding: 18px; 46 | box-shadow: 0 1px 5px #000!important; 47 | } 48 | .bettercanvas-add-assignment {max-height: 0; overflow:hidden;transition: .3s max-height;} 49 | .bettercanvas-custom-open {max-height: 250px} 50 | .bettercanvas-custom-input {box-sizing: border-box!important; width: 100%!important; height: 32px!important} 51 | .bettercanvas-custom-btn {background: #f5f5f5; border: 1px solid #c7cdd1; border-radius:6px; padding: 2px 8px;} 52 | .bettercanvas-viewmore-btn {display: block;margin:0 auto;margin-top: 8px;} 53 | .bettercanvas-course-percent, .bettercanvas-course-credit {border: 1px solid #ccc; color: var(--ic-brand-font-color-dark)} 54 | 55 | .bettercanvas-course-percent, .bettercanvas-course-weight, .bettercanvas-course-credit { 56 | height: 22px; text-align: center;border-radius: 3px;width: 50px; font-size: 13px; padding: 0; 57 | } 58 | 59 | .bettercanvas-course-weight { 60 | width: 120px; 61 | } 62 | .bettercanvas-gpa-letter-grade { 63 | width: 24px; 64 | margin-left: 6px; 65 | font-weight: bold; 66 | font-size: 16px; 67 | } 68 | .bettercanvas-gpa-output { 69 | display: flex; 70 | gap: 12px; 71 | font-size: 16px; 72 | } 73 | .bettercanvas-course-weight {margin: 0; width: min-content} 74 | .bettercanvas-course-weights, .bettercanvas-gpa-percent-container {margin: 0; margin-right: 10px} 75 | .bettercanvas-course-percent-sign{margin-left: 4px;} 76 | .bettercanvas-gpa-name {margin: 0;width: 120px;} 77 | 78 | .bettercanvas-gpa-course, #bettercanvas-cumulative-gpa {padding:6px;display:flex; align-items: center;border-bottom:1px solid #c7cdd1;border-bottom:none!important;} 79 | #bettercanvas-cumulative-gpa { font-weight: 16px;} 80 | #bettercanvas-cumulative-gpa .bettercanvas-gpa-name {font-weight: bold;} 81 | .bettercanvas-gpa-open {text-align:center} 82 | .bettercanvas-gpa-open:hover {cursor: pointer} 83 | .bettercanvas-gpa-courses {min-width:600px;width:max-content;} 84 | .bettercanvas-gpa-course-top, .bettercanvas-gpa-course-bottom {display: flex;} 85 | .bettercanvas-gpa-header {font-weight:700;font-size:16px;margin-top:0;margin-bottom:6px;padding-bottom:6px;} 86 | .bettercanvas-dashboard-notes {width: 100%; box-sizing: border-box; margin-top: 18px;border: 1px solid #c7cdd1;border-radius:3px;padding:8px 14px;resize:vertical} 87 | .bettercanvas-todosidebar, #bettercanvas-todo-list, #bettercanvas-announcement-list {margin: 0} 88 | .bettercanvas-todo-container {display: flex; margin-top: 14px;position: relative;transition: .2s all;} 89 | .bettercanvas-removing {max-height: 0;margin-top: 0} 90 | #bettercanvas-todo-list, #bettercanvas-announcement-list {font-size: 12px} 91 | .bettercanvas-todo-container, .bettercanvas-todo-container:hover {color:#777} 92 | .bettercanvas-todo-container p {margin: 0!important;} 93 | .bettercanvas-todo-icon svg {height: 18px; width: 18px;margin:0} 94 | .bettercanvas-todoitem-course {overflow: hidden; text-overflow: ellipsis;white-space: nowrap;} 95 | .bettercanvas-todoitem-title {font-size: 14px;font-weight:bold;display:inline;margin-top:2px;} 96 | .bettercanvas-todoitem-date {font-weight: bold} 97 | .bettercanvas-todo-item-completed {text-decoration: line-through;} 98 | .bettercanvas-todo-item {overflow: hidden;margin-left: 12px;} 99 | .bettercanvas-todo-item {width:100%;margin-left: 12px;color: #777} 100 | .bettercanvas-todo-item:hover {text-decoration: underline;cursor: pointer;color: #777;} 101 | .bettercanvas-customurl-setup {font-size: 18px;max-width: 400px;position: fixed; top: 40px; left: 40px; z-index: 10000; padding: 24px; background: #fff; border-radius: 6px; border: 1px solid #c7cdd1;box-shadow: 0 2px 5px rgb(0 0 0 / 30%)} 102 | .bettercanvas-customurl-setup p {margin: 0;} 103 | .bettercanvas-customurl-confirm {width: 100%; box-sizing: border-box;margin-top:20px;padding: 12px;border:none;background: #161616;border-radius:6px;color: #f5f5f5;font-size: 16px;} 104 | .bettercanvas-todo-complete-btn {padding: 0;height: 28px; width: 28px; border-radius: 3px; display: none; right: 0; top: 0; position:absolute;z-index: 100;background: #fff; border: none;} 105 | .bettercanvas-todo-complete-btn:hover {background:#eaebec} 106 | .bettercanvas-todo-container .bettercanvas-todo-complete-btn {display: none} 107 | .bettercanvas-todo-container:hover .bettercanvas-todo-complete-btn {display: block} 108 | #bettercanvas-announcement-list {margin-bottom:1.0625rem;} 109 | .bettercanvas-todo-item-loader {margin-top: 18px;} 110 | .bettercanvas-todo-item-loader .bettercanvas-skeleton-text {height:12px;margin-top: 8px;margin-bottom:0;margin-left:25px} 111 | .bettercanvas-hover-preview {position: absolute;top: -6px;left: -400px;display: none; background: #fff; color: #000; max-height: 300%; width: 350px; padding:12px;border-radius:5px; overflow: hidden;box-shadow: 0 2px 5px rgba(0,0,0,.3)} 112 | .bettercanvas-preview-text {text-overflow: ellipsis;} 113 | .bettercanvas-preview-title {font-weight:bold;font-size:14px;} 114 | .bettercanvas-hover-preview::after {content:'';position:absolute;width:100%;height: 18px;bottom:0;left:0;background:linear-gradient(0deg, #fff 50%, transparent)} 115 | .bettercanvas-link-image {height: 21px; width: 21px;padding: 0px} 116 | .bettercanvas-link-image:hover {filter: brightness(66%)} 117 | .bettercanvas-gpa-header {font-size:16px;font-weight: bold;padding: 0;margin: 0;} 118 | .bettercanvas-gpa-card {width: 262px; box-shadow: 0 2px 5px rgba(0,0,0,.3);border-radius:4px;margin: 36px 0 0 36px;display: inline-block;padding: 18px;box-sizing: border-box;vertical-align: top;} 119 | .bettercanvas-gpa-card p {margin: 0;} 120 | #cumulative-gpa .bettercanvas-gpa-name {font-weight:bold;} 121 | #bettercanvas-gpa-unweighted, #bettercanvas-gpa-weighted, #bettercanvas-gpa-cumulative {font-size: 24px; font-weight: bold;margin-top: 10px} 122 | .bettercanvas-gpa-edit-btn {background: #f5f5f5; border: 1px solid #c7cdd1; border-radius:6px; width: 100%; padding: 5px 0px; color: #000;margin-top: 10px} 123 | .bettercanvas-due-soon {background: #db3754; padding: 1px 4px; color: #fff; border-radius: 4px;display:inline-block} 124 | .bettercanvas-assignment-overdue { background: #db3754!important;color:#fff!important;} 125 | .bettercanvas-gpa-course-header {display: flex;} 126 | .bettercanvas-course-customgr {margin: 0 10px;} 127 | .bettercanvas-course-customgr-label {margin-left: 5px;} 128 | .bettercanvas-course-credits {margin-right: 20px;} 129 | .bettercanvas-todo-label-btn {display:inline-block;margin:0px 2px 2px 0;background: #f5f5f5;border:1px solid #c7cdd1;padding: 2px;border-radius:4px;} 130 | .bettercanvas-todo-label {background: var(--ic-link-color);color:#fff;padding:2px 4px;border-radius:3px;display:inline;height:100%;margin-right:5px;} 131 | .bettercanvas-todo-action {border-radius: 5px;} 132 | .bettercanvas-todo-actions {position: absolute; top: 0; right: 0; background: #fff;width:110px;font-weight:bold; color:#000;display:none;z-index:1000;border-radius:3px;border: 1px solid #c7cdd1;padding:10px} 133 | .bettercanvas-todo-actions-btn { border:1px solid transparent; height: 20px;width: 20px;background: none;padding: 0;margin: 0;border-radius:3px;} 134 | /*.bettercanvas-dots-icon {display: block!important;} 135 | .bettercanvas-todo-actions-btn:hover {background: #f5f5f5; border:1px solid #c7cdd1;}*/ 136 | .bettercanvas-todo-action, .bettercanvas-todo-action-tag { padding: 4px; margin: -2px 0;display:flex;justify-content: space-between;align-items:center;} 137 | .bettercanvas-todo-action:hover {background: #f5f5f5;cursor:pointer} 138 | .bettercanvas-todo-input {width: 100%!important;box-sizing: border-box!important;border-radius: 5px!important;height: 24px!important;padding:4px!important;margin:0!important;font-size:12px!important} 139 | .bettercanvas-todo-header:hover {cursor:pointer;text-decoration:underline} 140 | .bettercanvas-todo-actions svg {height: 18px; width:18px;} 141 | .bettercanvas-todo-item-header {max-height:80px;overflow:hidden;} 142 | .bettercanvas-todo-svg {fill:#2d3b45!important} 143 | #bettercanvas-update-msg {margin-top: 5px; display: flex; justify-content: space-between; font-size:15px;background: linear-gradient(115deg, rgb(255, 53, 88, .9), rgb(255, 131, 73, .9), rgb(255, 103, 187, .9)); color: #fff; border-radius:4px; padding: 20px;white-space: pre-line;} 144 | #bettercanvas-update-msg p {margin: 0;color:#fff!important;} 145 | #bettercanvas-update-close { background: #2f2f2f59; padding: 3px 6px; border-radius: 3px; height:100%; border:none; color: #fff!important;} 146 | #bettercanvas-reminders {animation: .4s ease slide; margin:20px!important;position: fixed!important; bottom: 0!important;right: 0;z-index:10000000000!important;flex-direction: column!important; gap:10px!important;} 147 | .bettercanvas-reminder-wrapper {overflow:hidden!important;position:relative!important;display: flex!important;justify-content:space-between!important;gap:10px!important;align-items:center!important;background: #fff!important;border-radius:12px!important;min-width:320px!important;max-width:320px!important;box-shadow: 0 2px 5px rgb(0 0 0 / 30%)!important;opacity: .94!important;} 148 | .bettercanvas-reminder-container {display:flex!important;gap:10px!important;padding: 22px 16px!important;} 149 | .bettercanvas-reminder-title { font-weight:bold!important;font-size: 16px!important;color: #000!important;margin:0!important;line-height:16px!important;} 150 | .bettercanvas-reminder-due {font-size:12px!important;margin:0!important;margin-top:5px!important;line-height:12px!important;color:#676767!important;} 151 | .bettercanvas-reminder-hide {color:#000!important;padding: 0px!important; font-size:14px!important;height:22px!important;min-width:22px!important;width:22px!important;margin: 10px!important;border-radius:6px!important;cursor:pointer;display:flex!important;align-self:stretch!important;align-items:center!important;justify-content:center!important;align-items:center!important;background: #e9e9e9!important;} 152 | .bettercanvas-reminder-content {text-decoration:none!important;} 153 | @keyframes slide { 154 | 0% { 155 | right: -320px; 156 | } 157 | 100% { 158 | right: 0; 159 | } 160 | } 161 | @keyframes blink { 162 | 50% { 163 | opacity: .5; 164 | } 165 | } -------------------------------------------------------------------------------- /css/options.css: -------------------------------------------------------------------------------- 1 | body, html {font-family: 'Wix Madefor Text';background:#161616;color:#e2e2e2} 2 | h1, h2, p {margin:0;padding:0;} 3 | .main {display:flex;margin:auto;width:1200px;margin-top:60px;align-items: center;justify-content: center;font-size: 15px;gap:20px;} 4 | #updateCSS {border:1px solid #8dd28d;background: #8dd28d24} 5 | #updateCSS:hover {background: #8dd28d24} 6 | .container {flex: 300px; border-radius: 14px;margin-bottom: 20px;} 7 | .steps-item {display:flex;align-items:center;margin-top: 12px;font-size:18px;font-weight:600;} 8 | .main-left { flex-wrap: wrap; gap: 20px;width:500px} 9 | .welcome img {height: 66px;width:66px;} 10 | h1 {font-size: 50px;line-height:52px;} 11 | h2 {font-size: 20px} 12 | .steps {margin-top: 40px; margin-bottom: 20px;background:#101010;padding:24px;border-radius: 14px;display: inline-block;} 13 | .menu-frame {border: none; height: 150vh;flex: 1;max-width: 514px;max-height:700px;overflow:scroll;border:1px solid #323232;border-radius:8px;} 14 | .bettercanvas {display:inline-block;background:-webkit-linear-gradient(0deg, #ff002e, #ff5200, #ff47ad);-webkit-background-clip: text;-webkit-text-fill-color: transparent;} 15 | .icon {height: 22px; width: 22px;margin-right: 10px;} 16 | .pin-icon {fill: #727272} 17 | .puzzle-icon {fill: #fff;} 18 | p {color: #adadad} 19 | .contact-info { font-size:12px;max-width:75%;} 20 | #finger2 {position:absolute;bottom:0;animation:bounce2 .7s infinite linear;font-size:18px;} 21 | #refresh-note {position:relative;font-size:16px;display:inline-block;margin-top:18px;} 22 | 23 | @keyframes bounce2 { 24 | 0% { 25 | right: -36px; 26 | } 27 | 50% { 28 | right: -30px; 29 | } 30 | 100% { 31 | right: -36px; 32 | } 33 | } -------------------------------------------------------------------------------- /css/popup.css: -------------------------------------------------------------------------------- 1 | :root {--inputbg: #1010104f;--containerbg: #00000047;--inputbg: #ffffff14;} 2 | body{width:505px;height: 100%; overflow-x: hidden; font-family: 'Wix Madefor Text', sans-serif;color: #e2e2e2;background: #161616;transition: .3s height} 3 | button {font-family: 'Wix Madefor Text', sans-serif} 4 | h1, h2, p, body{margin:0;padding:0} 5 | h1 {font-size:30px;} 6 | h2 {font-size:24px;} 7 | .option input{display:none;} 8 | .options input:nth-of-type(1).checked ~ .slider .sliderknob{background-color:#e1e1e12e;} 9 | .options input:nth-of-type(2).checked ~ .slider .sliderknob{transform:translate(18px);background-color:#8dd28d;} 10 | .option{display:flex;align-items:center;} 11 | .option span{margin-left:8px;} 12 | .main{position: relative;padding: 20px} 13 | .sliderknob{position:absolute;transition:all .1s linear;top:4px;height:14px;width:14px;border-radius:5px;margin-left:4px;z-index:1;} 14 | .sliderbg{background-color:var(--inputbg);width:100%;height:100%;border-radius:7px;} 15 | .slider:hover {cursor:pointer} 16 | .slider{height:22px;min-width:40px;position:relative;} 17 | .switch_disabled {opacity: .3} 18 | .timeset {display: block;margin-top: 5px} 19 | .timeset span {margin-left: 8px;} 20 | .header {font-size: 16px;display: flex;align-items: center;gap:12px; margin-bottom:14px;} 21 | .header h1 { font-weight: 600; font-size:24px; } 22 | #bclogo {height: 30px;width:30px;filter: grayscale(1) brightness(100)} 23 | #numAssignmentsSlider, #numTodoItemsSlider {display: block;margin-top: 14px;width: 100%;-webkit-appearance: none; appearance: none;background:var(--inputbg);outline: none;height:6px;border-radius:20px;} 24 | #numAssignmentsSlider::-webkit-slider-thumb, #numTodoItemsSlider::-webkit-slider-thumb {-webkit-appearance: none; appearance: none;height: 18px; width: 18px;background: #727272;cursor: pointer;border-radius:30px;} 25 | .option-container {font-size: 14px; margin-top: 8px;background: var(--containerbg);padding: 18px;border-radius: 14px;box-sizing:border-box} 26 | .options .option-container {padding: 14px;} 27 | a.option-container {display: block;color:#5ca5f6;font-size: 14px;} 28 | a.option-container:hover {background: #333} 29 | #customDomain {font-size: 12px; background: var(--inputbg); border: none;padding:8px;color: #e2e2e2;margin-top: 6px;border-radius: 7px; font-family: inherit;} 30 | #customDomain {width: 100%; box-sizing: border-box} 31 | #auto_dark_start, #auto_dark_end {padding: 3px 5px; font-size:12px;background: var(--inputbg);color:#e2e2e2;border:none;border-radius: 7px;} 32 | .options-left {margin-right: 8px;} 33 | .options-left, .options-right {width: 50%;} 34 | .customDomain {font-weight:600} 35 | .changer {margin:0;margin-bottom: 0px;width:100%} 36 | .option-background {color: #fff} 37 | .color-changer { font-family: inherit;font-size: 20px;background: none;border: none;color: #000;height: 30px;width:100%;padding:10px 0px 10px 10px;} 38 | .color-changer input:focus-visible {outline: none;} 39 | .option-color, .option-background {width: 100%;} 40 | .options {display: flex;justify-content: space-between} 41 | .options-presets {display: flex;flex-wrap:wrap;gap:5px;} 42 | .color-type-header {color: #e2e2e2;font-weight: normal;margin: 0;font-size:15px;min-width:160px;font-weight: bold;} 43 | button:hover {cursor: pointer;background:#adbcc724} 44 | button:active {filter:brightness(85%)} 45 | #updateCSS {border:1px solid #8dd28d;background: #8dd28d24} 46 | #updateCSS:hover {background: #8dd28d24} 47 | .option-background .color-changer {color:#e2e2e2;} 48 | .option-color .color-changer {color:#000;} 49 | .customization {margin-top: 12px} 50 | .customization-header {font-size: 20px;margin-top: 10px} 51 | .colors-button, .customization-button {flex: auto; font-size:12px;color:#e2e2e2;background:var(--inputbg);border: none;padding: 10px 20px; font-family: inherit;border-radius:7px;transition:.1s background;font-weight:400} 52 | .colors-button {min-width:90px} 53 | .sub-options {margin-top: 10px;margin-left: 3px} 54 | .sub-option {display: flex; gap: 5px;margin-top: 2px;} 55 | h2 {margin-top: 20px;font-weight:600} 56 | .header-small {margin: 0 0 10px; font-weight: 600;font-size:16px;} 57 | .tab {display: none; padding: 20px;} 58 | #advanced-current, #advanced-past {display: flex; flex-direction: column; gap: 10px;margin-top:10px;} 59 | .custom-card {width: 100%;margin: 0;font-size:12px} 60 | .custom-card-title {font-size:16px;overflow:hidden;height:18px;margin-bottom:4px;font-weight: 600;white-space: nowrap;} 61 | .card-input {font-size: inherit;background: var(--inputbg); border: none;padding:6px;color: #e2e2e2;margin-top: 6px;border-radius: 6px; font-family: inherit;width:100%; box-sizing: border-box;} 62 | .custom-card-inputs .card-input {background: var(--inputbg);border: 1px solid #1a1a1a7a} 63 | .custom-card-name, .custom-card-hide {margin-top: 5px} 64 | .custom-card-hide {display: flex; align-items: center;} 65 | .option-name {font-weight: 600} 66 | .sub-text {font-size: 12px;color: #c7c7c7} 67 | #advanced-settings, #gpa-bounds-btn, #custom-font-btn, #customize-dark-btn, #card-colors-btn {width: 100%;} 68 | .back-btn {width: 120px;height:100%;margin-top:0} 69 | .big-button {border: none;border-radius: 7px;background: var(--containerbg);color: #fff;font-family: inherit;padding: 12px 10px;font-weight:600} 70 | #setSingleColor, #setGradientColor {padding: 8px 20px;margin-top:5px;} 71 | .gpa-bounds-input {font-size: 14px;background: var(--inputbg); border: none;padding:6px;color: #e2e2e2;margin-top: 6px;border-radius: 6px; font-family: inherit; width: 55px; box-sizing: border-box;text-align: right} 72 | .gpa-bounds span {font-size: 16px; width: 25px;display: inline-block} 73 | .gpa-bounds-explanation {width:200px;height:100%;flex: 1;} 74 | .tab-header {display: flex;justify-content: space-between;gap:20px;align-items:center} 75 | .custom-font-flex {display: flex; align-items: center;font-size: 11px;} 76 | #custom-font-family, #custom-font-link {width:150px} 77 | .custom-links-container, .custom-card-left {flex: 1;} 78 | .custom-card-inputs {display: flex; gap: 10px;margin-top: 10px;} 79 | #quick-fonts {display: flex; flex-wrap: wrap;gap: 5px;margin-top:10px;} 80 | #quick-fonts .customization-button {padding: 13px 20px;} 81 | .changer-container {display: flex; align-items: center;gap: 10px;} 82 | .changer-container .card-input[type="color"] {height: 35px; max-width: 35px;background: none; border: none; padding: 0; margin: 0;cursor: pointer} 83 | .changer-container .card-input[type="color"]::-webkit-color-swatch {border-radius:6px;width:40px;margin:0;padding:0;} 84 | .color-options {} 85 | #gradientColorFrom:hover, #gradientColorTo:hover {cursor: pointer} 86 | .color-picker-small {height: 30px; width: 30px; border: none; background:var(--inputbg); border-radius: 4px} 87 | .color-picker-small::-webkit-color-swatch {border-radius: 4px; border: 7px solid #000000;border: none;} 88 | .color-picker-small::-moz-color-swatch {border-radius: 4px; border: 7px solid #000000;border: none;} 89 | .more-options-container {display: grid; gap: 6px; grid-template-columns: repeat(4, 1fr); margin-top: 10px} 90 | .more-options-container .big-button {display: flex; flex-direction: column; gap: 6px;justify-content:center;align-items:center;padding:15px 10px} 91 | .palette-selection {display: flex; gap: 5px;align-items: center;margin-top: 5px;} 92 | .palette-selection .card-input {width: 70px;margin: 0;} 93 | .colors-preview {display: flex;overflow:hidden;border-radius:3px;margin-top:4px;} 94 | .color-preview {flex: 1;height:8px;} 95 | .theme-button {position: relative; padding: 17px 10px; padding: 10px 10px 26px;text-align:left;transition: .25s background; background-size: cover; background-position: center;text-shadow: 0 0 4px #313131;overflow:hidden;} 96 | .theme-button:hover {background-size: 120%; background-position:center;} 97 | .theme-button-creator {font-size:10px;white-space:nowrap} 98 | .theme-button-title {font-weight: 600;font-size:12px;white-space:nowrap;} 99 | .theme-sort-btn {padding:10px 30px 10px 20px;border-radius:7px;background:none;border:none;color: #9d9d9d;font-size:12px;font-weight:600;text-align: left;cursor: pointer;transition:.18s color} 100 | .theme-sort-btn:hover {color: #fff;} 101 | .theme-header {display:flex;justify-content: space-between;margin-bottom:10px;align-items:center} 102 | .theme-controls {display:flex;justify-content: space-between;margin-bottom:6px;gap: 4px;} 103 | #theme-sorts {display:flex;align-items:center;background:var(--inputbg);border-radius: 7px;padding:10px 16px;gap:10px;color: #fff;border:none;font-weight: 600;} 104 | #theme-sort-selector {display: none; position: absolute; top: 5px; right: -10px; transform: translateX(100%); z-index: 1000;background: #0e0e0edb;backdrop-filter:blur(3px);border-radius: 7px;padding:5px 0;} 105 | #theme-sort-selector.open {display: block;} 106 | #submit-popup,#browser-settings-popup {display: none;position: fixed;top:0;left:0;width:100%;height:100%;z-index:1000;background:#0e0e0eed;backdrop-filter:blur(3px)} 107 | #submit-popup.open,#browser-settings-popup.open {display: flex;align-items:center;justify-content: center;} 108 | #browser-settings-btn {cursor: pointer;color:gray;} 109 | #theme-sorts-container {position: relative;} 110 | #themes-empty {grid-row: span 6; grid-column: span 4;display: flex;align-items:center;justify-content: center;} 111 | .color-line {background:linear-gradient(115deg, rgb(255, 53, 88), rgb(255, 131, 73), rgb(255, 103, 187));width:100%;height:2px;border-radius:10px;} 112 | #premade-themes-pagenum {font-size:13px;margin-right: 6px;font-weight:600} 113 | .color-options .card-input { flex: 1;margin: 0;} 114 | .error-message {margin: 20px;font-size: 14px; color: red;} 115 | textarea {resize: vertical} 116 | #premade-themes {min-height: 375px; grid-template-rows: repeat(6, 1fr)} 117 | #premade-themes, #premade-darkmodes {display:grid;grid-template-columns: repeat(4, 1fr);gap: 3px;} 118 | #error_log_output, #rk_output {min-height: 100px;} 119 | #image-tester {display: none;} 120 | #alert {font-size:13px;background: #e7495ebd; backdrop-filter: blur(1px); border-radius: 8px; padding: 15px; margin: 20px;position: fixed; transition: .3s bottom; bottom: -400px; left: 0;z-index:100000;} 121 | #alert:hover {cursor:pointer;} 122 | .custom-card-header {display: flex; justify-content: space-between;gap: 20px;} 123 | .sidebar-changer {display: flex;gap: 10px;} 124 | .custom-key { margin-right: 5px; } 125 | .options-presets .customization-button {padding:9px 14px} 126 | #export-output {margin: 0; height: 100%;} 127 | input[type="checkbox"] { appearance: none; background: var(--inputbg); margin: 0; width: 16px; height: 16px; border: 1px solid #1a1a1a;;border-radius: 4px; display: grid; place-content: center;} 128 | input[type="checkbox"]::before { content: ""; width: 10px; height: 10px; transform: scale(0); box-shadow: inset 1em 1em #323232; transform-origin: center; clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);} 129 | input[type="checkbox"]:checked::before {transform: scale(1);} 130 | input[type="checkbox"]:checked {background: #8dd28d;} 131 | #gradientbg {height: 550px;width: 150%;position: absolute;z-index: -1;opacity: .4;left: -25%; top: 0px;background: radial-gradient(at 50% 0%, #ff8349 0px, transparent 50%), radial-gradient(at 90% 0%, #ff67bb 0px, transparent 50%), radial-gradient(at 10% 0%, #ff3558 0px, transparent 50%);} 132 | #dark-mode-fix-urls { display: flex; gap: 5px;flex-wrap: wrap;} 133 | .fixed-url {display: flex; gap:10px; align-items: center;flex: 0;padding: 7px 14px;} 134 | .fixed-url button {background: #1e1e1e;padding: 3px 6px;border-radius:4px;color: #fff;border:none;font-size:12px} 135 | #premade-themes-right, #premade-themes-left {background: var(--inputbg);color:#fff;border-radius:7px;border:none;padding:8px 16px;font-size:12px;font-weight:600;height:100%} 136 | .update-date {color: #9f9f9f;margin-top: 0;margin-bottom: 10px;font-weight: 600;} 137 | .updates-container .header-small {margin-bottom: 5px;} 138 | #saved-themes {display: grid; grid-template-columns: repeat(4, 1fr);gap: 3px;} 139 | .saved-theme {cursor: pointer; padding: 10px 10px 20px;border-radius: 7px;background-size: cover;background-position:center;font-weight:600;position:relative;} 140 | .theme-button-remove {position: absolute;top:4px;right:4px;background:#e7e7e7;color:#000; height:14px;width:14px;border-radius:4px;opacity:.6;display:flex;align-items:center;justify-content: center;line-height:0;font-size:12px;} 141 | .theme-button-like {fill: #ffffff99; position: absolute; bottom: 4px; right: 4px; font-size: 10px; width: max-content; height: 10px;z-index:100;display: flex; gap: 4px; align-items: center;font-weight:500;background:#0000005c; border-radius:4px;padding:3px} 142 | .theme-liked { fill: #db547c;} 143 | .theme-button-like-amount { 144 | position: absolute; 145 | left: 0; 146 | transform: translateX(0%); 147 | background: #000000a3; 148 | height: 100%; 149 | display: flex; 150 | align-items: center; 151 | justify-content: center; 152 | padding: 0 4px; 153 | opacity: 0; 154 | transition: .2s transform ease-out, .1s opacity ease-in; 155 | border-radius: 4px; 156 | } 157 | .theme-button-like:hover { 158 | border-top-left-radius: 0; 159 | border-bottom-left-radius: 0; 160 | } 161 | .theme-button-like:hover .theme-button-like-amount, .theme-button-like-amount.showalways { 162 | transform: translateX(-100%); 163 | opacity: 1; 164 | border-top-right-radius: 0px; 165 | border-bottom-right-radius: 0px; 166 | } 167 | .small-option.theme-header { margin-bottom: 0;} 168 | .small-option .big-button { padding: 6px 10px;cursor: pointer;} 169 | .theme-liked.animate-like svg {animation: .3s like; } 170 | #new_browser_out, #new_browser_in {flex: 1;} 171 | #opt-in a {color: inherit; text-decoration: underline;} 172 | #opt-in {position: absolute;top:0;left:0;background:#141414e0;height:100%;width:100%;box-sizing: border-box;padding:24px;z-index:100;border-radius:6px;z-index:1000000} 173 | #opt-in-box {animation: .2s linear .4s fade-in forwards;opacity: 0;} 174 | #theme-search {flex: 1;border:none;background:none;height:100%;color:inherit;font-family:inherit;font-weight:600;width:100%;} 175 | #theme-search-container {flex: 1;display:flex;gap:10px;box-sizing: border-box;width: 100%;margin:0;align-items:center;padding-left:10px;color:#818181;} 176 | #submit-theme-btn, #cancel-theme-btn {flex: 1;} 177 | #submit-theme-btn-1 {width:33%} 178 | #reset-optin {min-width:max-content;height:100%;} 179 | #submit-tab {background: var(--containerbg);border-radius:6px;display:inline-flex;gap:2px;} 180 | .submit-tab-btn {font-size:12px;font-weight: 600;padding:6px 10px;border-radius:6px;border:none;background:none;color:#a4a4a4} 181 | .submit-tab-btn.active {background: var(--containerbg);color:#fff} 182 | #submit-drawer {margin-top:10px;} 183 | .submitted-theme {background:var(--containerbg);border-radius:10px;padding:14px;display:flex;gap:11px;} 184 | #latest-submissions {margin-top:10px;display: flex;flex-direction: column;gap:6px;font-size:13px;font-weight:600;} 185 | .submitted-theme-time { color: #a4a4a4; } 186 | .submitted-theme-details { flex: 1; display: flex; flex-direction: column; gap: 5px; font-size: 12px;} 187 | .submitted-theme-details p {font-weight:500;} 188 | .submitted-theme-tag {border-radius: 4px;padding: 3px 4px;max-width:min-content;font-weight: 600;} 189 | #custom-styles {min-height: 100px;} 190 | 191 | ::-webkit-scrollbar {width: 8px;} 192 | ::-webkit-scrollbar-track {background: #161616;} 193 | ::-webkit-scrollbar-thumb {background: #323232;border-radius:2px;} 194 | ::-webkit-scrollbar-button {background: #161616; height: 4px} 195 | 196 | @keyframes like { 197 | 0% { 198 | transform: scale(1); 199 | } 200 | 201 | 50% { 202 | transform: scale(1.3); 203 | } 204 | 205 | 100% { 206 | transform: scale(1); 207 | } 208 | } 209 | 210 | @keyframes fade-in { 211 | 0% { 212 | opacity: 0; 213 | } 214 | 100% { 215 | opacity: 1; 216 | } 217 | } -------------------------------------------------------------------------------- /html/options.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Better Canvas 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |
19 |
20 |
21 |

Welcome to Better Canvas!

22 |
23 |

Refresh your Canvas page to setup

24 | 👈 25 |
26 |
27 |
28 |

How to access this menu later:

29 |
  • 30 | 31 | 33 | 34 | Click on this puzzle icon at the top right 35 |
  • 36 |
  • Click on Better Canvas
  • 37 |
  • 38 | 39 | 41 | 42 | You can also pin it for easier access 43 |
  • 44 |
    45 |
    46 |

    My email is ksucpea@gmail.com if you 47 | have any issues/suggestions - any feedback is appreciated!

    48 | 49 |
    50 |
    51 |
    52 | 53 |
    54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /html/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Better Canvas 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
    22 |
    23 |
    24 |
    25 | 26 |

    Better Canvas

    27 |
    28 |
    29 | 33 | 37 | 41 | 45 | 49 | 53 | 57 | 61 |
    62 |
    63 |
    64 |
    65 |
    66 | 67 | 68 |
    69 |
    70 |
    71 |
    72 | Dark mode 73 |
    74 |
    75 | 76 | 77 |
    78 |
    79 |
    80 |
    81 | Automatic dark mode 82 |
    83 |
    84 |
    85 |
    86 | 87 | Start time 88 |
    89 |
    90 | 91 | End time 92 |
    93 |
    94 |
    95 | 96 | 97 |
    98 |
    99 |
    100 |
    101 |
    102 | 103 | 104 |
    105 |
    106 |
    107 |
    108 | Card assignments 109 |
    110 |
    111 |
    112 | 113 | 114 |
    115 |
    116 | 117 | 118 |
    119 |
    120 | 121 | 122 |
    123 |
    124 | Max items to show: 126 | 127 |
    128 |
    129 |
    130 |
    131 |
    132 | 133 | 134 |
    135 |
    136 |
    137 |
    138 | GPA calculator 139 |
    140 |
    141 |
    142 | 143 | 144 |
    145 |
    146 | 147 | 148 |
    149 |
    150 | 151 | 152 |
    153 |
    154 |
    155 |
    156 |
    157 | 158 | 159 |
    160 |
    161 |
    162 |
    163 | Card Grades 164 |
    165 |
    166 |
    167 | 168 | 169 |
    170 |
    171 |
    172 |
    173 |
    174 | 175 | 176 |
    177 |
    178 |
    179 |
    180 | Todo Reminders 181 |
    182 | 190 |
    191 |
    192 | 193 |
    194 |
    195 |
    196 | 197 | 198 |
    199 |
    200 |
    201 |
    202 | Better Todo List 203 |
    204 |
    205 |
    206 | 207 | 209 |
    210 |
    211 | 212 | 214 |
    215 |
    216 | 217 | 218 |
    219 |
    220 | 221 | 222 |
    223 |
    224 | 225 | 226 |
    227 |
    228 | Max items to show: 230 | 231 |
    232 |
    233 |
    234 |
    235 |
    236 | 237 | 238 |
    239 |
    240 |
    241 |
    Dashboard Notes 242 |
    243 |
    244 | 245 | 246 |
    247 |
    248 |
    249 |
    250 | Gradient cards 251 |
    252 |
    253 | 254 | 255 |
    256 |
    257 |
    258 |
    Condensed Cards 259 |
    260 |
    261 | 262 | 263 |
    264 |
    265 |
    266 |
    Disable Color Overlay 267 |
    268 |
    269 | 270 | 271 |
    272 |
    273 |
    274 |
    275 | Dashboard full width 276 |
    277 | 285 |
    286 | 287 | 288 |
    289 |
    290 |
    291 |
    Hide recent feedback 292 |
    293 |
    294 | 295 | 296 |
    297 |
    298 |
    299 |
    Color coded tab icons 300 |
    301 |
    302 |
    303 |
    304 | Your Canvas URL: 305 |

    (Enter multiple with a comma)

    306 | 307 |
    308 |
    309 |
    310 |
    311 |
    312 | 313 | 511 | 512 | 665 | 666 | 667 | 687 | 688 | 702 | 703 | 724 | 725 | 860 | 861 |
    862 |
    863 |
    864 |

    Report issue

    865 |
    866 | 867 |
    868 |

    Find solutions to common issues: click here

    You can also email ksucpea@gmail.com for any issues or feedback. Thank you!

    869 |

    870 |
    871 |

    Storage reset

    872 |
    873 | 874 | This will reset all settings to the default. You will need to refresh the page after. 875 |
    876 |
    877 |
    878 |

    Storage Dump

    879 |
    880 |
    881 | 882 | This will retrieve all the settings saved by the extension. 883 |
    884 | 885 |
    886 |
    887 |
    888 |

    Dark mode inspector

    889 |
    890 | 891 | This will inspect the page for any dark mode gaps. 892 |
    893 |
    894 | 895 |
    896 |
    897 |
    898 |

    Card limit

    899 |
    900 |
    901 | 902 |

    903 |
    904 |

    This is an experimental feature. Adjusting this number will reset your cards and could cause storage issues.

    905 | 906 |
    907 | 908 |
    909 | 923 |
    924 |

    Error log

    925 |
    926 | 927 |
    928 |
    929 |

    5.11.2

    930 |
    931 | 932 |
    933 |
    934 |
    935 |

    Updates

    936 |
    937 | 938 |
    939 |
    940 | 941 | Show update messages on dashboard 942 |
    943 |
    944 |

    Update 5.11.2

    945 |

    Aug. 31, 2024

    946 |
      947 |
    • New themes
    • 948 |
    • Updated menu
    • 949 |
    • New sorting function for themes (score, color, alphabetical, date)
    • 950 |
    • More troubleshooting features
    • 951 |
    952 |
    953 |
    954 |

    Update 5.10.10

    955 |

    Jul. 15, 2024

    956 |
      957 |
    • "Hide recent feedback" feature
    • 958 |
    • "Color coded tab icons" feature
    • 959 |
    • "Remove sidebar logo" feature
    • 960 |
    • "Dark mode fixer" feature
    • 961 |
    • "Use card colors" option for todo list
    • 962 |
    • "Use device dark mode settings" option
    • 963 |
    • Added more themes
    • 964 |
    • Redesigned menu
    • 965 |
    • Added cumulative GPA into GPA calculator
    • 966 |
    • Done items section for todo list (click the "Todo" text to see)
    • 967 |
    • Card colors now change instantly
    • 968 |
    • Dark mode buttons preview their appearance
    • 969 |
    • Dark mode now syncs across devices
    • 970 |
    • New dark mode sidebar options
    • 971 |
    • Card customization now shows preview of image
    • 972 |
    973 |
    974 |
    975 |

    Update 5.8.11

    976 |

    Jan. 8, 2024

    977 |
      978 |
    • Card customization now sorts by current/previous
    • 979 |
    • Added "revert to original" for card colors
    • 980 |
    • Improved dark mode customization tab
    • 981 |
    • New import/export themes feature
    • 982 |
    • Improved menu design
    • 983 |
    984 |
    985 |
    986 |

    Update 5.7.5

    987 |

    Sep. 8, 2023

    988 |
      989 |
    • New card color palletes feature
    • 990 |
    • Updated gpa calculator interface
    • 991 |
    • Added espanol language option
    • 992 |
    • Added color picker input to dark mode customization
    • 993 |
    994 |
    995 |
    996 |

    Update 5.6.2

    997 |

    Jun. 17, 2023

    998 |
      999 |
    • Changes made in the menu no longer require refresh
    • 1000 |
    • Can now change items shown in better todo list
    • 1001 |
    • Added customizable GPA boundaries
    • 1002 |
    • Options now sync between devices
    • 1003 |
    • Added custom card links feature
    • 1004 |
    • Hover to preview details option
    • 1005 |
    • Disable color overlay option
    • 1006 |
    • New uninstall goodbye message
    • 1007 |
    • Added custom fonts feature
    • 1008 |
    • Welcome screen redesign
    • 1009 |
    • Menu redesign
    • 1010 |
    • New logo
    • 1011 |
    1012 |
    1013 |
    1014 |

    Update 5.5.1

    1015 |

    Apr. 26, 2023

    1016 |
      1017 |
    • Corrected order of todo list announcements
    • 1018 |
    • GPA calculator now saves credits/weight
    • 1019 |
    • Hide completed assignments option
    • 1020 |
    • Added card customization feature
    • 1021 |
    • Card grade hover only option
    • 1022 |
    • Fixed card assignments bug
    • 1023 |
    • Dark mode improvements
    • 1024 |
    • More dark mode presets
    • 1025 |
    • Custom assignments 1026 |
    • Menu redesign
    • 1027 |
    1028 |
    1029 |
    1030 |

    Update 5.2.1

    1031 |

    Feb. 2, 2023

    1032 |
      1033 |
    • Condensed cards feature
    • 1034 |
    • Fixed gradient cards
    • 1035 |
    • Fixed GPA calculator
    • 1036 |
    1037 |
    1038 |
    1039 |

    Update 5.1.4

    1040 |

    Jan. 5, 2023

    1041 |
      1042 |
    • Improved URL setup
    • 1043 |
    • Added 24hr format option
    • 1044 |
    • GPA calculator moved to dashboard page
    • 1045 |
    • Dashboard grades moved to the card header
    • 1046 |
    1047 |
    1048 |
    1049 |

    Update 5.0.6

    1050 |

    Oct. 21, 2022

    1051 |
      1052 |
    • Dark mode improvements
    • 1053 |
    • Can now enter multiple urls for the custom url
    • 1054 |
    • Quizzes link correctly in the assignments list
    • 1055 |
    • "Better todo list" feature
    • 1056 |
    • "Dashboard notes" feature
    • 1057 |
    • Optional dd/mm format for dashboard assignments
    • 1058 |
    • View dark mode changes in real time
    • 1059 |
    1060 |
    1061 |
    1062 |

    Update 4.2.1

    1063 |

    Mar. 2, 2022

    1064 |
      1065 |
    • Removed assignment potentials and link preview features
    • 1066 |
    • Dark mode can now target iframes (better coverage)
    • 1067 |
    • Added dark mode presets
    • 1068 |
    • "Dashboard grades" feature
    • 1069 |
    • New welcome message
    • 1070 |
    1071 |
    1072 |
    1073 |

    Update 1.0.0

    1074 |

    Oct. 17, 2021

    1075 |
      1076 |
    • First release :)
    • 1077 |
    1078 |
    1079 | 1080 |
    1081 | 1082 | 1083 | 1084 | 1085 | 1086 | -------------------------------------------------------------------------------- /icon/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-128.png -------------------------------------------------------------------------------- /icon/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-16.png -------------------------------------------------------------------------------- /icon/icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-19.png -------------------------------------------------------------------------------- /icon/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-32.png -------------------------------------------------------------------------------- /icon/icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-38.png -------------------------------------------------------------------------------- /icon/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-48.png -------------------------------------------------------------------------------- /icon/icon-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/icon-wide.png -------------------------------------------------------------------------------- /icon/iconwpadding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/iconwpadding.png -------------------------------------------------------------------------------- /icon/oldicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UseBetterCanvas/bettercanvas/c7d8bad4e6c2c10589f07e4497e0080a8cc2825a/icon/oldicon-128.png -------------------------------------------------------------------------------- /js/background.js: -------------------------------------------------------------------------------- 1 | chrome.runtime.onInstalled.addListener(function () { 2 | 3 | let default_options = { 4 | "local": { 5 | "previous_colors": null, 6 | "previous_theme": null, 7 | "errors": [], 8 | "saved_themes": {}, 9 | "liked_themes": [], 10 | }, 11 | "sync": { 12 | "dark_preset": { 13 | "background-0": "#161616", 14 | "background-1": "#1e1e1e", 15 | "background-2": "#262626", 16 | "borders": "#3c3c3c", 17 | "text-0": "#f5f5f5", 18 | "text-1": "#e2e2e2", 19 | "text-2": "#ababab", 20 | "links": "#56Caf0", 21 | "sidebar": "#1e1e1e", 22 | "sidebar-text": "#f5f5f5" 23 | }, 24 | "new_install": true, 25 | "assignments_due": true, 26 | "gpa_calc": false, 27 | "dark_mode": true, 28 | "gradent_cards": false, 29 | "disable_color_overlay": false, 30 | "auto_dark": false, 31 | "auto_dark_start": { "hour": "20", "minute": "00" }, 32 | "auto_dark_end": { "hour": "08", "minute": "00" }, 33 | "num_assignments": 4, 34 | "custom_domain": [""], 35 | "assignments_done": [], 36 | "dashboard_grades": false, 37 | "assignment_date_format": false, 38 | "dashboard_notes": false, 39 | "dashboard_notes_text": "", 40 | "better_todo": false, 41 | "todo_hr24": false, 42 | "condensed_cards": false, 43 | "custom_cards": {}, 44 | "custom_cards_2": {}, 45 | "custom_cards_3": {}, 46 | "custom_assignments": [], 47 | "custom_assignments_overflow": ["custom_assignments"], 48 | "grade_hover": false, 49 | "hide_completed": false, 50 | "num_todo_items": 4, 51 | "custom_font": { "link": "", "family": "" }, 52 | "hover_preview": true, 53 | "full_width": null, 54 | "remlogo": null, 55 | "gpa_calc_bounds": { 56 | "A+": { "cutoff": 97, "gpa": 4.3 }, 57 | "A": { "cutoff": 93, "gpa": 4 }, 58 | "A-": { "cutoff": 90, "gpa": 3.7 }, 59 | "B+": { "cutoff": 87, "gpa": 3.3 }, 60 | "B": { "cutoff": 83, "gpa": 3 }, 61 | "B-": { "cutoff": 80, "gpa": 2.7 }, 62 | "C+": { "cutoff": 77, "gpa": 2.3 }, 63 | "C": { "cutoff": 73, "gpa": 2 }, 64 | "C-": { "cutoff": 70, "gpa": 1.7 }, 65 | "D+": { "cutoff": 67, "gpa": 1.3 }, 66 | "D": { "cutoff": 63, "gpa": 1 }, 67 | "D-": { "cutoff": 60, "gpa": .7 }, 68 | "F": { "cutoff": 0, "gpa": 0 } 69 | }, 70 | "todo_overdues": false, 71 | "card_overdues": false, 72 | "relative_dues": false, 73 | "hide_feedback": false, 74 | "dark_mode_fix": [], 75 | "assignment_states": {}, 76 | "tab_icons": false, 77 | "todo_colors": false, 78 | "device_dark": false, 79 | "cumulative_gpa": { "name": "Cumulative GPA", "hidden": false, "weight": "dnc", "credits": 999, "gr": 3.21 }, 80 | "show_updates": false, 81 | "card_method_date": false, 82 | "card_method_dashboard": false, 83 | "card_limit": 25, 84 | "remind": false, 85 | "reminders": [], 86 | "reminder_count": 1, 87 | "multi_remind": false, 88 | "id": "", 89 | "new_browser": null, 90 | "gpa_calc_cumulative": false, 91 | "gpa_calc_weighted": true, 92 | "browser_show_likes": false, 93 | "custom_styles": "", 94 | } 95 | }; 96 | 97 | const updateMsg = "Better Canvas was just updated!\nThis version added new themes, cumulative GPA into the GPA calculator, and a new sorting function for themes."; 98 | 99 | chrome.storage.local.get(null, local => { 100 | chrome.storage.sync.get(null, async sync => { 101 | let newSyncOptions = {"update_msg": updateMsg}; 102 | let newLocalOptions = {}; 103 | Object.keys(default_options["sync"]).forEach(option => { 104 | if (sync[option] !== undefined) return; 105 | newSyncOptions[option] = default_options["sync"][option]; 106 | }); 107 | Object.keys(default_options["local"]).forEach(option => { 108 | if (local[option] !== undefined) return; 109 | newLocalOptions[option] = default_options["local"][option]; 110 | }) 111 | 112 | if (Object.keys(newLocalOptions).length > 0) { 113 | chrome.storage.local.set(newLocalOptions); 114 | } 115 | 116 | if (Object.keys(newSyncOptions).length > 0) { 117 | chrome.storage.sync.set(newSyncOptions).then(() => { 118 | console.log(newSyncOptions); 119 | if (newSyncOptions.new_install === true) { 120 | chrome.runtime.openOptionsPage(); 121 | chrome.storage.sync.set({ new_install: false }); 122 | } 123 | }); 124 | } 125 | }); 126 | }); 127 | }); 128 | 129 | chrome.runtime.setUninstallURL("https://diditupe.dev/bettercanvas/goodbye"); 130 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 3, 3 | "name": "Better Canvas", 4 | "description": "Feature packed extension for Canvas.", 5 | "version": "5.12.6", 6 | "icons": { 7 | "16": "icon/icon-16.png", 8 | "32": "icon/icon-32.png", 9 | "48": "icon/icon-48.png", 10 | "128": "icon/icon-128.png" 11 | }, 12 | "action": { 13 | "default_icon": { 14 | "19": "icon/icon-19.png", 15 | "38": "icon/icon-38.png" 16 | }, 17 | "default_popup": "html/popup.html", 18 | "default_title": "Better Canvas" 19 | }, 20 | "background": { 21 | "service_worker": "js/background.js" 22 | }, 23 | "options_page": "html/options.html", 24 | "content_scripts": [ 25 | { 26 | "matches": ["https://*/*"], 27 | "js": ["js/content.js"], 28 | "css": ["css/content.css"], 29 | "run_at": "document_start" 30 | } 31 | ], 32 | "permissions": ["storage"], 33 | "default_locale": "en" 34 | } 35 | --------------------------------------------------------------------------------