Skip to content

Instantly share code, notes, and snippets.

@koryovip
koryovip / manifest.json
Created February 23, 2024 05:41 — forked from yasu-s/manifest.json
Chrome拡張 - ScreenCapture Test
{
"manifest_version": 3,
"name": "ScreenCapture Test",
"version": "1.0",
"description": "ScreenCapture Test",
"permissions": ["activeTab", "debugger"],
"action": {
"default_popup": "popup.html"
}
}
@koryovip
koryovip / IEUserAgentTest.html
Created October 10, 2023 08:04 — forked from jasongaylord/IEUserAgentTest.html
A sample JavaScript file to detect IE compatibility mode and version. This is not recommended unless absolutely needed as features should be detected instead.
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Testing IE Compatibility Mode</title>
<script src="ieUserAgent.js" type="text/javascript"></script>
</head>
<body>
<div id="results">Results:</div>
<script type="text/javascript">
var val = "IE" + ieUserAgent.version;
@koryovip
koryovip / index.html
Created October 2, 2023 07:05 — forked from feo52/index.html
css hacks 2022
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<title>css hack</title>
<style>
body { font-family: monospace; }
summary { list-style: none; }
summary::-webkit-details-marker { display:none; }
#
# Original version by Grant Parnell is offline (http://digitaldj.net/2011/07/21/trim-enabler-for-lion/)
#
# Looks for "Apple" string in HD kext, changes it to a wildcard match for anything
#
# Alternative to http://www.groths.org/trim-enabler-3-0-released/
# Method behind this madness described: http://forums.macrumors.com/showthread.php?t=1409151&page=4
# See discussion in comments here: https://www.macupdate.com/app/mac/39654/lion-tweaks
# And here: http://forums.macrumors.com/showthread.php?t=1410459
# And here: http://forums.macrumors.com/showthread.php?t=1480302