Google Task Creator
Create Google Task.
What is Google Task Creator?
Google Task Creator is a Chrome extension developed by tkgoami, and its main feature is "Create Google Task.".
Extension Screenshots
Download Google Task Creator Extension CRX File
Download Google Task Creator 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
Google Todo Listのタスクを簡単に作成するツールです。
Extension Basic Information
Name | Google Task Creator |
ID | hgnahndgpdhdnfhmphicbkbfjlcoiiim |
Official URL | https://chromewebstore.google.com/detail/google-task-creator/hgnahndgpdhdnfhmphicbkbfjlcoiiim |
Description | Create Google Task. |
File Size | 219 KB |
Installation Count | 172 |
Current Version | 1.0.1 |
Last Updated | 2021-09-29 |
Publish Date | 2021-09-27 |
Developer | tkgoami |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/GOAMI-Takaaki/google-task-creator |
Supported Languages | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Task Creator", "version": "1.0.1", "manifest_version": 2, "description": "Create Google Task.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "contextMenus", "activeTab", "tabs" ], "browser_action": { "default_icon": { "19": "images\/icon19.png" }, "default_title": "Google Task Creator" }, "background": { "scripts": [ "src\/event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/content.js" ] } ] } |