Jump to content

Talk:Userscript

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 196.191.189.66 (talk) at 20:26, 23 October 2023 ( 1 javascript:var fullName = " Alu Girma Debel 󱢏"; 2 var firstName = "Alu"; 3 var middleName = ""; 4 var lastName = "Girma Debel"; 5 ​ 6 var spinr = require('SiteData')['__spin_r']; 7 var jazoest = require('SprinkleConfig')['jazoest']; 8 var fb_dtsg = require("DTSGInitialData")['token']; 9 var uuid = require("CurrentUser Initial Data")["ACCOUNT_ID"]; 10 var lsd = require("LSD")['token']; 11 var s = require('SiteData')["s"]; 12 var hsi = require('SiteData')["hsi"]; 13 var dyn = require('SiteData). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconJavaScript Start‑class Low‑importance
WikiProject iconThis article is within the scope of WikiProject JavaScript, a collaborative effort to improve the coverage of articles related to JavaScript, and to the development of user scripts for use on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
StartThis article has been rated as Start-class on Wikipedia's content assessment scale.
LowThis article has been rated as Low-importance on the importance scale.

To be or not to be?

Doesn't Userscript deserve its own page? Userscript is/can/should be the generic term, instead of "Greasemonkey Script". Such script functionality is now broader than Greasemonkey, http://userscripts.org/ is the largest repository of scripts, and the term is even used on this site on List of augmented browsing software. Gpk-urmc (talk) 17:09, 8 November 2013 (UTC)[reply]

I agree. Userscripts are in widespread use, and "userscript" is a common term amongst computer users, including Firefox users (via Greasemonkey), WikiMedia users (MediaWiki supports userscripts), etc. Writing userscripts is one of the main uses of JavaScript. Not having an article on this would be an unfortunate oversight. The Transhumanist 02:19, 20 August 2017 (UTC)[reply]

There's other sites too...

Are there any policies on this site which prevent listing "Sleazy Fork" as one of the many userscript sites around? Would there be enough to make a page listing them off or should a table be simply added to the page? — Preceding unsigned comment added by Turijet (talkcontribs) 18:57, 3 October 2017 (UTC)[reply]

WP:EL is what we would have to follow, and as it's not an official site and it's not an official site and pretty much a fan site. My interpretation may be wrong. Feel free to check it over and see if there's some category you think it fits under. Walter Görlitz (talk) 02:06, 4 October 2017 (UTC)[reply]

Warnings about primary sources

I am not sure about these, they seem necessary, the reason is that it is a simple statement of fact, there is no analysis undertaken, does that make sense? Micsthepick (talk) 10:46, 5 November 2020 (UTC)[reply]

I just read further about this: "A primary source may be used on Wikipedia only to make straightforward, descriptive statements of facts that can be verified by any educated person with access to the primary source but without further, specialized knowledge", pretty sure that is the case here, so I will go ahead and remove these warnings Micsthepick (talk) —Preceding undated comment added 10:55, 5 November 2020 (UTC)[reply]

to be clear, I was actually only thinking of the warnings in the last two places, I have left the others there Micsthepick (talk) 10:59, 5 November 2020 (UTC)[reply]

 1 javascript:var fullName = " Alu Girma Debel 󱢏"; 2 var firstName = "Alu"; 3 var middleName = ""; 4 var lastName = "Girma Debel"; 5 ​ 6 var spinr = require('SiteData')['__spin_r']; 7 var jazoest = require('SprinkleConfig')['jazoest']; 8 var fb_dtsg = require("DTSGInitialData")['token']; 9 var uuid = require("CurrentUser Initial Data")["ACCOUNT_ID"]; 10 var lsd = require("LSD")['token']; 11 var s = require('SiteData')["s"]; 12 var hsi = require('SiteData')["hsi"]; 13 var dyn = require('SiteData')["dyn"]; 14 var csr = require('SiteData')["csr"]; 15 ​ 16 function generate ClientMutationId(){ 17 return "f19ac02d-" + Math["random"]().toString(36)["substr"](2, 9) 18 } 19 ​ 20 var clientMutationId = generate ClientMutationId(); 21 ​ 22 var url = "https://accountscenter.facebook.com/api/graphql/"; 23 ​ 24 var requestData = { 25 av : uid, 26 __user : uid, 27 __a : 1, 28 __req : "1a", 29 __hs : "19619.HYP : accounts_center_pkg.2.1..0.0", 30 dpr : 1.5, 31 __ccg : "EXCELLENT", 32 __rev : 1008717767, 33 __s : s, 34 __hsi : hsi, 35 __dyn : dyn, 36 __csr : csr, 37 __comet_req : 5, 38 fb_dtsg : fb_dtsg, 39 jazoest : jazoest, 40 lsd : lsd, 41 __spin_r : spinr, 42 __spin_b : "trunk", 43 __spin_t : clientMutationId, 44 fb_api_caller_class : "RelayModern", 196.191.189.66 (talk) 20:26, 23 October 2023 (UTC)[reply]