Frequent Access
URL that are often used can be a favorite? No, let's summarized in this tool.
What is Frequent Access?
Frequent Access is a Chrome extension developed by ssaita, and its main feature is "URL that are often used can be a favorite? No, let's summarized in this tool.".
Extension Screenshots
Download Frequent Access Extension CRX File
Download Frequent Access extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
お気に入りは便利です。 しかし、ログイン機能まではサポートしてくれません。 この拡張機能は、現在開いているタブのURLを一括で保存できます。 加えて、その保存したURLを一括で開くことができます。 どちらもChromeの標準機能ですね?知ってます。これは拡張機能の勉強用に作りました。 この文言が見えているということは、おそらく開発者の知り合いでしょう。 この拡張機能は、それにさらに加えてログイン機能が実装されています。 formのusernameとpassword名をそれぞれ要素名に登録することで、任意のURLにアクセスした際に自動でログインすることができます。もうすでに他の拡張機能にある機能ですね?知ってます。 ※言語設定機能は単なる遊びです。開発者は英語の知識も古語知識も持ちあわせておりません。 == 更新履歴 == v1.0.2 ・post先(action属性)を指定できる処理を追加 これにより、ログイン機能で「名前:action, 値:任意のURL」とすることで、 POST先を任意のものに指定できます。 ・アイコンを呪文書っぽいものに変えました。 v1.0.1 公開
Extension Basic Information
Name | |
ID | pboolhclmibpongjhecmahegephbcllh |
Official 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 |
Description | URL that are often used can be a favorite? No, let's summarized in this tool. |
File Size | 359 KB |
Installation Count | 16 |
Current Version | 1.1.0 |
Last Updated | 2016-02-04 |
Publish Date | 2016-02-04 |
Rating | 3.00/5 Total 1 Ratings |
Developer | ssaita |
Payment Type | free |
Supported Languages | 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" ] } |