As this is not an official way of installing Arc, if you encounter any issues do NOT report them to the developers, they did not intend for people to be running Arc on Windows 10.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(()=>{var bottomElement=document.getElementsByClassName("ytp-chrome-bottom")[0];var currentStyle=bottomElement.getAttribute("style");if(currentStyle.includes("display: none;")){bottomElement.setAttribute("style",currentStyle.replace("display: none;","display: block;"))}else{bottomElement.setAttribute("style",currentStyle+"display: none;")}})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Toggl Hour Decimal Calculator | |
// @namespace https://trev.app | |
// @version 0.1 | |
// @description Show hour decimal on Toggl project page | |
// @author trev.app | |
// @match https://track.toggl.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEditor; | |
using System.Reflection; | |
using System; | |
using System.Text; | |
using Unity.VisualScripting; | |
using System.IO; | |
using System.Linq; |