Ace Jump

Change background and foreground colors for eye health and normal vision, support simple change, entire change and smart change.

Qu'est-ce que Ace Jump ?

Ace Jump est une extension Chrome développée par chylvina, et sa fonction principale est "Change background and foreground colors for eye health and normal vision, support simple change, entire change and smart change.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Ace Jump

Téléchargez les fichiers d'extension Ace Jump au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Let you jump to another webpage without any mouse move/click.

This extension is inspired by EMACS's ace jump. 

1. When installed, press Alt + J (Command + J) in any webpage
2. It will mark all the hyperlinks in current webpage, with 3 letters at most
3. Input the letters in order then it will jump to that hyperlink

That's it. Enjoy.                    

Informations de Base sur l'Extension

Nom Ace Jump Ace Jump
ID dffnomheiaejjeadigfgnadlbfdbbhja
URL Officiel https://chromewebstore.google.com/detail/ace-jump/dffnomheiaejjeadigfgnadlbfdbbhja
Description Change background and foreground colors for eye health and normal vision, support simple change, entire change and smart change.
Taille du Fichier 181 KB
Nombre d'Installations 317
Version Actuelle 1.0.0
Dernière Mise à Jour 2014-05-03
Date de Publication 2014-05-03
Évaluation 4.89/5 Total 9 Évaluations
Développeur chylvina
Type de Paiement free
Langues Prises en Charge en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_page": "options.html",
    "icons": {
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "__MSG_name__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/inject.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "",
        "storage"
    ],
    "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}