PUBLIC   marks

PUBLIC MARKS with tag greasemonkey

Sponsorised links

December 2009

Advanced Greasemonkeying — Yoan Blanc’s weblog

by decembre
Jouant occasionnellement avec Greasemonkey, j’ai fait face a des problèmes récurrent liés à l’architecture de l’extention elle-même. * Comment réutiliser une bibliothèque déjà présente dans la page, * comment traiter un résultat XML * ou qu’est-ce qui fait que je n’arrive pas à mettre une Yahoo!/Google maps dynamiquement. Réutiliser une librairie(, fonction, variable) existante

Google Maps Max - Get GMaps Full-Screen with Greasemonkey or Stylish - Lifehacker (Pour les français : dans Greasemonkey autoriser " google.fr " et cela marche trés bien!)

by decembre
Wipes out the top header whitespace and displays your map full screen, with an optional driving directions sidebar...And removes the Google copyright symbol and increases the inset map window four times. Check out some side-by-side comparison screenshots. Pour les français : dans Greasemonkey autoriser " google.fr " et cela marche trés bien!

Barrejadis - Google Big Maps version 2 : faire soi même un poster géant d'image satellite

by decembre
# Il y a quelques jours, j'avais mis à disposition un script Greasemonkey permettant de créer et imprimer un plan Google Maps de grande taille. Voici maintenant la version 2 du même script qui permet de faire la même chose sur les images satellite (et aussi sur le mode mixte plan/satellite pendant qu'on y est).le bouton de gauche permet de sélectionner le coin haut-gauche du plan ou de l'image satellite à réaliser. Il suffit de choisir son niveau de zoom et de se déplacer dans la fenêtre jusqu'à ce que le coin haut-gauche de la vue soit positionné sur le coin haut-gauche souhaité. A ce moment là, un click sur le bouton enregistre la position. # le bouton de droite permet de faire la même chose avec le coin bas-droit. # le bouton central ouvre une nouvelle fenêtre permettant de finaliser l'image.

Barrejadis - Google Big Maps - Imprimer le plan complet d'une ville avec Google Maps

by decembre
IOn peut directement lancer une impression mais on peut aussi sauvegarder la page obtenue sous forme d'image pour un usage ultérieur (tel qu'une découpe plus précise dans un logiciel de dessin par exemple). Pour cela, on utilise une extension de Firefox permettant de sauvegarder le document html sous forme d'image png ou jpeg. Screengrab! ou Save As Image font ça très bien. Ce qui vient à l'idée maintenant c'est que les plans c'est bien, mais les images satellites ça serait encore mieux ! Leur encodage est différent de celui des plans et la solution proposée ne fonctionne donc pas, du moins pas encore : si j'ai un peu de temps, je me pencherai sur le sujet. Toute autre remarque est évidemment la bienvenue. Keywords

Hack 12. Avoid Common Pitfalls

by maxxyme
Avoid common pitfalls while writing your Greasemonkey userscripts

Sponsorised links

November 2009

Google Maps Streetview Thumbnail for Greasemonkey

by decembre
On the Google Maps streetview, shows the panorama thumbnail (with a link to the larger one).

October 2009

Customize your Web browsing experience with Greasemonkey | Programming and Development | TechRepublic.com

by decembre
You can accomplish all of this via JavaScript.Scripts include metadata that provide details about the script, including target sites and sites that should never apply. The following metadata elements may be used: * Name: The name assigned to the script. It is displayed when the script is installed, as well as within the Manage Scripts window. * Namespace: The namespace used to distinguish scripts when more than one has the same name. (This is the same approach as used in programming languages like Java and C#.) * Description: A brief description of the script’s purpose. * Include: A list of URLs associated with the script (i.e., the URLs for running the script). The URLs may include wildcard characters (*). Multiple URLs appear on their own line. * Exclude: A list of URLs for which the scripts will never run. Multiple entries appear on their own line.

40+ Greasemonkey Scripts For Gmail & Google | TechnoBuzz.net

by decembre
Some Days Back we posted 21 Cool Twitter Greasemonkey Scripts and now today am going to post some of the Best Greasemonkey Scripts for Gmail and Google. There are thousands of scripts that you can install to customize just about anything you can think of. But in this list you can find some of the cool one which will really help you to Organize Gmail and Google.

Management of scripts greasemonkey - Recherche Google

by decembre
management of the scripts are not so good. It's apparently impossible to rename a script....

The URI microformat, OpenURL and COIns, will be very interesting to library application - in "Programming" (Tricks/tips learned in daily programming work)

by decembre & 1 other
The URI microformat takes advantage of OpenURL and existing link resolver solution.It defines a convention of plugging URI metadata in HTML page. If it is adopted and widely used,now a microformat-aware application (be a greasemonkey script, or a web service) can grab the identifier and point to your local OpenURL resolver, you immediately get the copy from local library.It is very similar to COINS, but it's much simpler and cleaner, anyone can understand and use it, and its aplication can be beyond traditional research library. e.g. in a public library, you can use amazon as catalog and immediately check if it's available in local collection.------- COinS provides a great number of additional capabilities that URI microformat can't support. Since COinS can't be dismissed for this reason, it doesn't make sense to me to create yet another standard that does the same thing with so little savings.I will grant that the COinS is less intuitive.....

AMO Link. - Greasemonkey Script - Replaces the url in the link text with the add-on’s name.

by decembre
If you, like me, visit Firefox forums or similar regularly, maybe you also often see people only posting the url of an add-on not saying which one it is. This script queries the AMO API for every link to an add-on it finds and replaces the url in the link text with the add-on’s name.

September 2009

BinNews Search File With Binsearch, Newzleech, and others - Recherche fichiers ".NZB" - Usenet , Newgroups - Userscripts

by decembre
Une petite astuce pour trouver rapidement les .NZB à partir de binnews : _Ajoutez à Greasemonkey ce petit script : (BinNews Search File With Binsearch, Newzleech, and others - userscripts) : Install scripthttp://userscripts.org/scripts/show/13851 Il rajoutera dans vos résultats sur binnews des petits icônes de façon très intuitive ! Ce sont des liens vers BinTube, Binsearch, Newsleech, etc. Un clic dessus et la recherche est déjà faites, vous n’avez plus qu’à télécharger le .NBZ ! Testez, vous adoptere

UserScript Writing 101 – Manuel of Things to learn - Userscripts.org

by decembre
The Order of Things to Learn Look to the "Resources" section for places to learn about these. 1. HTML. Hypertext Markup Language. Not the same "language" as JavaScript. This is a markup language, meaning it's a bunch of text that is meant to represent some type of structure, in this case, a web page. 2. XML. Extensible Markup Language. In case you didn't realize, HTML itself is a type of "XML". Learning XML is important because many popular websites (YouTube, Facebook, Last.fm) use XML to interact with data. Since you already know HTML by this point, understanding XML should be cake. 3. CSS. Cascading Style Sheets. This is the way HTML (should be) stylized. You'll want to learn this. 4. JavaScript. Learn all the basics: data types, functions, JavaScript's native functions like prompt, alert, etc. 5. The Greasemonkey Extras. Like I said, Greasmonkey == JavaScript, with a lot of extras. A specific page listing the API's can be found here.

Flickr Gallery Plus! for Greasemonkey

by decembre
Flickr Gallery Plus! is a Greasemonkey userscript for Flickr photo set pages which offers you the ability to: * View one large picture with the other thumbnails in the set next to it. * Click-selection of whichever picture you want to see larger. * Keyboard navigation with left and right arrow keys to go back and forth amongst pictures. * View a slideshow of all pictures in the set. It is tested and verified to work with Firefox, Safari (through GreaseKit), Google Chrome (through HOW TO: Install Google Chrome Greasemonkey Scripts (Windows Only)) and Opera (through Opera Tutorial: User JavaScript).

August 2009

Forum Deblocker - Greasemonkey

by decembre
The "Forum Deblocker" userscript simulates the Googlebot so you may see the forum pages as google sees them

Google Fx v2.1.9 for Greasemonkey - firefox et opera

by decembre
AutoPaging + Site ThumbShots + Google Suggest (multi-lang) + Easy Filters + Right Panel Feature + Images Redirect & Preview + Searchers + Static TopBar + NoAds + Nice Look&Feel + User's Settings + MultiLanguage & more... [Opera & Firefox] Version: 2.1.9

flic.kr short URL screenshot on Flickr - Photo Sharing!

by decembre
Simple Greasemonkey script to add a flic.kr short URL link to the Additional Information section.

Flickr Contacts' Favorites Explorer for Greasemonkey

by decembre
Browsing favorites from your contact is a great way to discover new images. This script will help you with that. On the front page of flickr below the contacts section, there should be a section called "Your Contacts' Favorites" where the favorites list will appear.

Fav.icio.us3 - Greasemonkey - Add favicons next to posted links on Delicious.com

by decembre
A script to add favicons next to posted links on delicious.com.... Working with the latest update of Delicious (as of August 2009). From 90% uses the code of fav.icio.us2 by Vasco Flores.

Organize your books for Greasemonkey

by decembre
This script tries to notify about your books in libary and export and them as csv. Dieses Skript schaut nach verfallenden Büchern an der bibliothek und exportiert diese irgendwann als Datei

PUBLIC TAGS related to tag greasemonkey

no tag

Sponsorised links