Frequent Access
URL that are often used can be a favorite? No, let's summarized in this tool.
O que é Frequent Access?
Frequent Access é uma extensão do Chrome desenvolvida por ssaita, e sua principal característica é "URL that are often used can be a favorite? No, let's summarized in this tool.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Frequent Access
Baixe arquivos de extensão Frequent Access no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
お気に入りは便利です。 しかし、ログイン機能まではサポートしてくれません。 この拡張機能は、現在開いているタブのURLを一括で保存できます。 加えて、その保存したURLを一括で開くことができます。 どちらもChromeの標準機能ですね?知ってます。これは拡張機能の勉強用に作りました。 この文言が見えているということは、おそらく開発者の知り合いでしょう。 この拡張機能は、それにさらに加えてログイン機能が実装されています。 formのusernameとpassword名をそれぞれ要素名に登録することで、任意のURLにアクセスした際に自動でログインすることができます。もうすでに他の拡張機能にある機能ですね?知ってます。 ※言語設定機能は単なる遊びです。開発者は英語の知識も古語知識も持ちあわせておりません。 == 更新履歴 == v1.0.2 ・post先(action属性)を指定できる処理を追加 これにより、ログイン機能で「名前:action, 値:任意のURL」とすることで、 POST先を任意のものに指定できます。 ・アイコンを呪文書っぽいものに変えました。 v1.0.1 公開
Informações Básicas da Extensão
Nome | |
ID | pboolhclmibpongjhecmahegephbcllh |
URL Oficial | 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 |
Descrição | URL that are often used can be a favorite? No, let's summarized in this tool. |
Tamanho do Arquivo | 359 KB |
Contagem de Instalações | 16 |
Versão Atual | 1.1.0 |
Última Atualização | 2016-02-04 |
Data de Publicação | 2016-02-04 |
Classificação | 3.00/5 Total de 1 Avaliações |
Desenvolvedor | ssaita |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |