Frequent Access

URL that are often used can be a favorite? No, let's summarized in this tool.

Qu'est-ce que Frequent Access ?

Frequent Access est une extension Chrome développée par ssaita, et sa fonction principale est "URL that are often used can be a favorite? No, let's summarized in this tool.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Frequent Access

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

                        お気に入りは便利です。
しかし、ログイン機能まではサポートしてくれません。

この拡張機能は、現在開いているタブのURLを一括で保存できます。
加えて、その保存したURLを一括で開くことができます。
どちらもChromeの標準機能ですね?知ってます。これは拡張機能の勉強用に作りました。
この文言が見えているということは、おそらく開発者の知り合いでしょう。

この拡張機能は、それにさらに加えてログイン機能が実装されています。
formのusernameとpassword名をそれぞれ要素名に登録することで、任意のURLにアクセスした際に自動でログインすることができます。もうすでに他の拡張機能にある機能ですね?知ってます。

※言語設定機能は単なる遊びです。開発者は英語の知識も古語知識も持ちあわせておりません。

== 更新履歴 ==

v1.0.2
・post先(action属性)を指定できる処理を追加
 これにより、ログイン機能で「名前:action, 値:任意のURL」とすることで、
 POST先を任意のものに指定できます。
・アイコンを呪文書っぽいものに変えました。

v1.0.1
公開                    

Informations de Base sur l'Extension

Nom Frequent Access Frequent Access
ID pboolhclmibpongjhecmahegephbcllh
URL Officiel https://chrome.google.com/webstore/detail/url%E3%81%BE%E3%81%A8%E3%82%81%E3%81%A6%E3%81%BF%E3%81%BE%E3%81%97%E3%81%9F/pboolhclmibpongjhecmahegephbcllh
Description URL that are often used can be a favorite? No, let's summarized in this tool.
Taille du Fichier 359 KB
Nombre d'Installations 16
Version Actuelle 1.1.0
Dernière Mise à Jour 2016-02-04
Date de Publication 2016-02-04
Évaluation 3.00/5 Total 1 Évaluations
Développeur ssaita
Type de Paiement free
Langues Prises en Charge en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.1.0",
    "default_locale": "ja",
    "description": "__MSG_description__",
    "browser_action": {
        "default_icon": "icon\/book_24.png",
        "default_title": "__MSG_extName__",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon\/book_48.png",
        "64": "icon\/book_64.png",
        "128": "icon\/book_128.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "setting.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.9.1.min.js",
                "js\/main.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs"
    ]
}