GM_Polyfill

Provide GM_functions in non-ScriptManager-environment

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/429613/975941/GM_Polyfill.js

  1. /* eslint-disable no-multi-spaces */
  2. // ==UserScript==
  3. // @name GM_Polyfill
  4. // @namespace GM_Polyfill
  5. // @version 0.3
  6. // @description Provide GM_functions in non-ScriptManager-environment
  7. // @author PY-DNG
  8. // @match *
  9. // @icon data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADF0lEQVRYhe2XQU/bSBTHPbKRKtkmkpESbdVLcgwC4dtKjZDPFZgv0OTEN+h3gPNe+AIIBIccUeC0VrVa0khslDYgpSr1arUoPeaWxYz928OOaTY4hGVL2wMjvdu8937zxs/zf5r2vS1gBTgAhny5NQQOgdXbEj8BtgGCIOi5rtsyTXMghEDTtHuZEALTNAdLS0utIAh6CmYbeJIFsJ0kifR9/1gIkdw36S0wie/7x0mSSGA7q+z4vn/8pROPm+/7x6oSK6MAB0EQ9B7i5FmVUNdxMAowdF239dDJU3NdtwUMRwEwTXPwtQBM0xwA/Avg/3zt97gGbgB8reSpPQI8AjwC3BnAMIxLy7IGhmFc3TW4rutRLpcbGIbx170BSqXSu0aj0Y3jWAJEURTt7u62C4XC+0lB8/l8b39/vx1FUQQQx7E8Ojrqlkql9n8CqFarzSRJAN4Aa8AzoAacSSllpVJpjgesVCpNKaUEzoCXwFP1yv4CsL6+3roTQLlcPlHP5RagayNLiZa6lFLm8/le6lMoFN6r5PVxsQHowE8ACwsLJ1MBOp3OR+D1ePIxiLO9vb3fUp+dnZ0ToJepdD5D/Nztdn9P35xMANu2P6nTP88KNLL/ZRRFka7rkWEYV+rOa1N8fgSwbbs/EcBxnFP+EZCZpx/Z/wNALpcbWJY1UNDPpvjowHBubu40E0AIwezs7IUKtjgl2Focx3JmZubSMIxL1SlrU3wWASzL+iPzOU4VcBiGfaA+5SRvDg8Pu5r6BhqNRld1zMTKAfUwDPupUh4HuJZknuc1VRVeTUi+lSQJxWKxkwIUi8W3qm1vdI7yewXgeV5T07Il2bUoFUKwsbHRUhB1VTodeK66g1qtduM/UK1WU/DXaq+ufOsAm5ubLSHERFH6Aj7LciEEy8vLzfPz8z9V0CFAp9P5WC6XT8aTpzY/P99ut9sfRn3CMOx7ntdM2y9TliuIG4OJEALbti8cxzk1TbM/KfG4WZb1yXGcU9u2L9LEQohkdXX118zBRAE82Gjmuu700WwE5KGG0wNuG06/1fobtnrEdKhuQ44AAAAASUVORK5CYII=
  10. // @grant GM_setValue
  11. // @grant GM_getValue
  12. // @grant GM_deleteValue
  13. // @grant GM_listValues
  14. // @grant GM_xmlhttpRequest
  15. // @grant GM_openInTab
  16. // @grant GM_setClipboard
  17. // ==/UserScript==
  18.  
  19. // GM_Polyfill By PY-DNG
  20. // 2021.07.18 - 2021.07.19
  21. // Simply provides the following GM_functions using localStorage, XMLHttpRequest and window.open:
  22. // Returns object GM_POLYFILLED which has the following properties that shows you which GM_functions are actually polyfilled:
  23. // GM_setValue, GM_getValue, GM_deleteValue, GM_listValues, GM_xmlhttpRequest, GM_openInTab, GM_setClipboard, unsafeWindow(object)
  24. // All polyfilled GM_functions are accessable in window object/Global_Scope(only without Tempermonkey Sandboxing environment)
  25. function GM_PolyFill(name = 'default') {
  26. const GM_POLYFILL_KEY_STORAGE = 'GM_STORAGE_POLYFILL';
  27. let GM_POLYFILL_storage;
  28. const GM_POLYFILLED = {
  29. GM_setValue: true,
  30. GM_getValue: true,
  31. GM_deleteValue: true,
  32. GM_listValues: true,
  33. GM_xmlhttpRequest: true,
  34. GM_openInTab: true,
  35. GM_setClipboard: true,
  36. unsafeWindow: true
  37. }
  38. // Ignore GM_PolyFill_Once
  39. window.GM_POLYFILLED && window.GM_POLYFILLED.once && (window.unsafeWindow = window.GM_setClipboard = window.GM_openInTab = window.GM_xmlhttpRequest = window.GM_getValue = window.GM_setValue = window.GM_listValues = window.GM_deleteValue = undefined);
  40.  
  41. GM_setValue_polyfill();
  42. GM_getValue_polyfill();
  43. GM_deleteValue_polyfill();
  44. GM_listValues_polyfill();
  45. GM_xmlhttpRequest_polyfill();
  46. GM_openInTab_polyfill();
  47. GM_setClipboard_polyfill();
  48. unsafeWindow_polyfill();
  49.  
  50. function GM_POLYFILL_getStorage() {
  51. let gstorage = localStorage.getItem(GM_POLYFILL_KEY_STORAGE);
  52. gstorage = gstorage ? JSON.parse(gstorage) : {};
  53. let storage = gstorage[name] ? gstorage[name] : {};
  54. return storage;
  55. }
  56.  
  57. function GM_POLYFILL_saveStorage() {
  58. let gstorage = localStorage.getItem(GM_POLYFILL_KEY_STORAGE);
  59. gstorage = gstorage ? JSON.parse(gstorage) : {};
  60. gstorage[name] = GM_POLYFILL_storage;
  61. localStorage.setItem(GM_POLYFILL_KEY_STORAGE, JSON.stringify(gstorage));
  62. }
  63.  
  64. // GM_setValue
  65. function GM_setValue_polyfill() {
  66. typeof (GM_setValue) === 'function' ? GM_POLYFILLED.GM_setValue = false: window.GM_setValue = PF_GM_setValue;;
  67.  
  68. function PF_GM_setValue(name, value) {
  69. GM_POLYFILL_storage = GM_POLYFILL_getStorage();
  70. name = String(name);
  71. GM_POLYFILL_storage[name] = value;
  72. GM_POLYFILL_saveStorage();
  73. }
  74. }
  75.  
  76. // GM_getValue
  77. function GM_getValue_polyfill() {
  78. typeof (GM_getValue) === 'function' ? GM_POLYFILLED.GM_getValue = false: window.GM_getValue = PF_GM_getValue;
  79.  
  80. function PF_GM_getValue(name, defaultValue) {
  81. GM_POLYFILL_storage = GM_POLYFILL_getStorage();
  82. name = String(name);
  83. if (GM_POLYFILL_storage.hasOwnProperty(name)) {
  84. return GM_POLYFILL_storage[name];
  85. } else {
  86. return defaultValue;
  87. }
  88. }
  89. }
  90.  
  91. // GM_deleteValue
  92. function GM_deleteValue_polyfill() {
  93. typeof (GM_deleteValue) === 'function' ? GM_POLYFILLED.GM_deleteValue = false: window.GM_deleteValue = PF_GM_deleteValue;
  94.  
  95. function PF_GM_deleteValue(name) {
  96. GM_POLYFILL_storage = GM_POLYFILL_getStorage();
  97. name = String(name);
  98. if (GM_POLYFILL_storage.hasOwnProperty(name)) {
  99. delete GM_POLYFILL_storage[name];
  100. GM_POLYFILL_saveStorage();
  101. }
  102. }
  103. }
  104.  
  105. // GM_listValues
  106. function GM_listValues_polyfill() {
  107. typeof (GM_listValues) === 'function' ? GM_POLYFILLED.GM_listValues = false: window.GM_listValues = PF_GM_listValues;
  108.  
  109. function PF_GM_listValues() {
  110. GM_POLYFILL_storage = GM_POLYFILL_getStorage();
  111. return Object.keys(GM_POLYFILL_storage);
  112. }
  113. }
  114.  
  115. // unsafeWindow
  116. function unsafeWindow_polyfill() {
  117. typeof (unsafeWindow) === 'object' ? GM_POLYFILLED.unsafeWindow = false: window.unsafeWindow = window;
  118. }
  119.  
  120. // GM_xmlhttpRequest
  121. // not supported properties of details: synchronous binary nocache revalidate context fetch
  122. // not supported properties of response(onload arguments[0]): finalUrl
  123. // ---!IMPORTANT!--- DOES NOT SUPPORT CROSS-ORIGIN REQUESTS!!!!! ---!IMPORTANT!---
  124. function GM_xmlhttpRequest_polyfill() {
  125. typeof (GM_xmlhttpRequest) === 'function' ? GM_POLYFILLED.GM_xmlhttpRequest = false: window.GM_xmlhttpRequest = PF_GM_xmlhttpRequest;
  126.  
  127. // details.synchronous is not supported as Tempermonkey
  128. function PF_GM_xmlhttpRequest(details) {
  129. const xhr = new XMLHttpRequest();
  130.  
  131. // open request
  132. const openArgs = [details.method, details.url, true];
  133. if (details.user && details.password) {
  134. openArgs.push(details.user);
  135. openArgs.push(details.password);
  136. }
  137. xhr.open.apply(xhr, openArgs);
  138.  
  139. // set headers
  140. if (details.headers) {
  141. for (const key of Object.keys(details.headers)) {
  142. xhr.setRequestHeader(key, details.headers[key]);
  143. }
  144. }
  145. details.cookie ? xhr.setRequestHeader('cookie', details.cookie) : function () {};
  146. details.anonymous ? xhr.setRequestHeader('cookie', '') : function () {};
  147.  
  148. // properties
  149. xhr.timeout = details.timeout;
  150. xhr.responseType = details.responseType;
  151. details.overrideMimeType ? xhr.overrideMimeType(details.overrideMimeType) : function () {};
  152.  
  153. // events
  154. xhr.onabort = details.onabort;
  155. xhr.onerror = details.onerror;
  156. xhr.onloadstart = details.onloadstart;
  157. xhr.onprogress = details.onprogress;
  158. xhr.onreadystatechange = details.onreadystatechange;
  159. xhr.ontimeout = details.ontimeout;
  160. xhr.onload = function (e) {
  161. const response = {
  162. readyState: xhr.readyState,
  163. status: xhr.status,
  164. statusText: xhr.statusText,
  165. responseHeaders: xhr.getAllResponseHeaders(),
  166. response: xhr.response
  167. };
  168. (details.responseType === '' || details.responseType === 'text') ? (response.responseText = xhr.responseText) : function () {};
  169. (details.responseType === '' || details.responseType === 'document') ? (response.responseXML = xhr.responseXML) : function () {};
  170. details.onload(response);
  171. }
  172.  
  173. // send request
  174. details.data ? xhr.send(details.data) : xhr.send();
  175.  
  176. return {
  177. abort: xhr.abort
  178. };
  179. }
  180. }
  181.  
  182. // NOTE: options(arg2) is NOT SUPPORTED! if provided, then will just be skipped.
  183. function GM_openInTab_polyfill() {
  184. typeof (GM_openInTab) === 'function' ? GM_POLYFILLED.GM_openInTab = false: window.GM_openInTab = PF_GM_openInTab;
  185.  
  186. function PF_GM_openInTab(url) {
  187. window.open(url);
  188. }
  189. }
  190.  
  191. // NOTE: needs to be called in an event handler function, and info(arg2) is NOT SUPPORTED!
  192. function GM_setClipboard_polyfill() {
  193. typeof (GM_setClipboard) === 'function' ? GM_POLYFILLED.GM_setClipboard = false: window.GM_setClipboard = PF_GM_setClipboard;
  194.  
  195. function PF_GM_setClipboard(text) {
  196. // Create a new textarea for copying
  197. const newInput = document.createElement('textarea');
  198. document.body.appendChild(newInput);
  199. newInput.value = text;
  200. newInput.select();
  201. document.execCommand('copy');
  202. document.body.removeChild(newInput);
  203. }
  204. }
  205.  
  206. return GM_POLYFILLED;
  207. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址