EasyAccess

Provide easy access to bookmarks

Qu'est-ce que EasyAccess ?

EasyAccess est une extension Chrome développée par arathunku, et sa fonction principale est "Provide easy access to bookmarks".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension EasyAccess

Téléchargez les fichiers d'extension EasyAccess 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

                        Easy access to your bookmarks.

Press CTRL + P on any site and start typing. 

You can change the shortcut in the settings. You can even define sequenes to open input box like: 'p p' or 'ctrl+p p'.

ROADMAP:
 - add new icon
 - add searching through open tabs
 - add searching through history


Contact, questions: https://twitter.com/arathunku

Code available: https://github.com/arathunku/EasyAccess                    

Informations de Base sur l'Extension

Nom EasyAccess EasyAccess
ID eglfbifmfncbdeekilocghogomnkilbh
URL Officiel https://chromewebstore.google.com/detail/easyaccess/eglfbifmfncbdeekilocghogomnkilbh
Description Provide easy access to bookmarks
Taille du Fichier 46.75 KB
Nombre d'Installations 25
Version Actuelle 0.0.2
Dernière Mise à Jour 2014-06-01
Date de Publication 2014-06-01
Développeur arathunku
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyAccess",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Provide easy access to bookmarks",
    "homepage_url": "http:\/\/twitter.com\/arathunku",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "options_page": "src\/options\/index.html",
    "permissions": [
        "storage",
        "bookmarks",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/vendor\/mousetrap.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/inject\/inject.html",
        "js\/options.js",
        "js\/vendor\/mousetrap.min.js.js",
        "js\/vendor\/mousetrap-record.min.js.js"
    ]
}