Filtering for "unread" messages in Gmail web and mobile application and Outlook (new).
is:unread
jar:file:///C:/Users/<USER>/AppData/Local/Firefox%20Nightly/omni.ja!/ | |
# https://firefox-source-docs.mozilla.org/overview/gecko.html#chrome-protocol |
- ViewProfile.jspa # User | |
- name | |
- Dashboard.jspa # Widgets | |
- selectPageId | |
- ConfigurePortalPages.jspa # Manage Dashboards | |
- view | |
- filterView | |
- favourites | |
- my | |
- popular |
$app = 'net.dinglisch.android.taskerm' | |
$permissions = 'READ_LOGS', 'SET_VOLUME_KEY_LONG_PRESS_LISTENER' | |
cd $env:LOCALAPPDATA\Android\Sdk\platform-tools | |
foreach ($permission in $permissions) { | |
.\adb.exe shell ` | |
pm grant $app android.permission.$permission | |
} |
user_pref('permissions.default.image', 2); | |
// Disable images | |
user_pref('browser.urlbar.update2.engineAliasRefresh', true); | |
// Adds "Add" button in Search Shortcuts table at about:preferences#search | |
// Useful in setting Google CSE as the default search engine |
// ==UserScript== | |
// @namespace Personal | |
// @name Remove media | |
// @description Remove images and videos | |
// @version 2025-01-17 | |
// @author Elvin Aslanov | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=wikimedia.org | |
// @license MIT | |
// @grant none |
edge://discover-chat-v2/ |
edge://inspect/#pages |
$action = New-ScheduledTaskAction -Execute 'powershell.exe' ` | |
-Argument 'Stop-Computer -Force' | |
$trigger = New-ScheduledTaskTrigger -Daily ` | |
-At '2:30 AM' | |
$task = Register-ScheduledTask -TaskName 'Shutdown' ` | |
-Description 'Shutting the PC down at night' ` | |
-Action $action ` | |
-Trigger $trigger ` |
REGEDIT4 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices] | |
"Z:"="\\??\\C:\\Documents and Settings\\All Users\\Shared Documents" |