Q Accelerator
Qiitaでの活動を加速させるChrome拡張機能
What is Q Accelerator?
Q Accelerator is a Chrome extension developed by tatsuya.nakano, and its main feature is "Qiitaでの活動を加速させるChrome拡張機能".
Extension Screenshots
Download Q Accelerator Extension CRX File
Download Q Accelerator 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
以下の機能を含んでいます。 - ストック数を表示(実験的機能) - 記事の更新時間を表示 - 行番号を表示 - コピーアイコンを表示 - 言語名を表示 - 自動いいね/自動ストック - ヘッダーを固定 - 新規投稿時のテンプレート - 閲覧履歴の検索 全ての機能はON/OFFを切り替え可能です。 本拡張機能はOSSです。 https://github.com/howdy39/q-accelerator
Extension Basic Information
Name | Q Accelerator |
ID | mheleidccioamimekojienbdfclcbaan |
Official URL | https://chromewebstore.google.com/detail/q-accelerator/mheleidccioamimekojienbdfclcbaan |
Description | Qiitaでの活動を加速させるChrome拡張機能 |
File Size | 1.05 MB |
Installation Count | 482 |
Current Version | 2.2.1 |
Last Updated | 2019-03-05 |
Publish Date | 2019-03-05 |
Rating | 4.38/5 Total 8 Ratings |
Developer | tatsuya.nakano |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/howdy39/q-accelerator |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Q Accelerator", "short_name": "QA", "description": "Qiita\u3067\u306e\u6d3b\u52d5\u3092\u52a0\u901f\u3055\u305b\u308bChrome\u62e1\u5f35\u6a5f\u80fd", "icons": { "16": "assets\/images\/qa_icon16.png", "48": "assets\/images\/qa_icon48.png", "128": "assets\/images\/qa_icon128.png" }, "version": "2.2.1", "homepage_url": "https:\/\/github.com\/howdy39\/q-accelerator", "background": { "persistent": false, "page": "background\/background.html" }, "browser_action": { "default_popup": "assets\/popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/qiita.com\/*", "https:\/\/qiita.com\/*" ], "js": [ "content_scripts\/all-content.js" ] }, { "matches": [ "http:\/\/qiita.com\/*\/items\/*", "https:\/\/qiita.com\/*\/items\/*", "http:\/\/qiita.com\/*\/private\/*", "https:\/\/qiita.com\/*\/private\/*" ], "js": [ "content_scripts\/article-content.js" ] }, { "matches": [ "http:\/\/qiita.com\/drafts\/new", "https:\/\/qiita.com\/drafts\/new" ], "js": [ "content_scripts\/drafts-new-content.js" ] } ], "permissions": [ "unlimitedStorage", "storage" ], "options_ui": { "page": "assets\/settings.html", "open_in_tab": true }, "web_accessible_resources": [ "assets\/images\/*" ] } |