Frequent Access

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

Wat is Frequent Access?

Frequent Access is een Chrome-extensie ontwikkeld door ssaita, en de belangrijkste functie is "URL that are often used can be a favorite? No, let's summarized in this tool.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Frequent Access

Download Frequent Access-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

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

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

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

== 更新履歴 ==

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

v1.0.1
公開                    

Basisinformatie over de Extensie

Naam Frequent Access Frequent Access
ID pboolhclmibpongjhecmahegephbcllh
Officiële URL 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
Beschrijving URL that are often used can be a favorite? No, let's summarized in this tool.
Bestandsgrootte 359 KB
Aantal Installaties 16
Huidige Versie 1.1.0
Laatst Bijgewerkt 2016-02-04
Publicatiedatum 2016-02-04
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ssaita
Betalingswijze free
Ondersteunde Talen 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"
    ]
}