Auto numbering Extension
This app allows you to generate consecutive numbers
Auto numbering Extensionとは何ですか?
Auto numbering Extensionはchris-brien glazeによって開発されたChromeの拡張機能で、その主な機能は「This app allows you to generate consecutive numbers」です。
拡張機能のスクリーンショット
Auto numbering Extension拡張機能のCRXファイルをダウンロード
Auto numbering Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This application will generate a series of consecutive numbers and paste them in any editable field. Ex. 1,2,3,4 拡張機能の基本情報
| 名前 | |
| ID | adbmoofdncnefcbapchcjbmiafgghoka |
| 公式URL | https://chromewebstore.google.com/detail/auto-numbering-extension/adbmoofdncnefcbapchcjbmiafgghoka |
| 説明 | This app allows you to generate consecutive numbers |
| ファイルサイズ | 62.14 KB |
| インストール数 | 66 |
| 現在のバージョン | 2.0 |
| 最終更新日 | 2022-03-25 |
| 公開日 | 2022-02-19 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | chris-brien glaze |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Auto numbering Extension",
"description": "This app allows you to generate consecutive numbers",
"version": "2.0",
"options_page": "generator.html?opt=pg",
"background": {
"service_worker": "background.js"
},
"commands": {
"InsertNum": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "Command+Shift+2"
},
"description": "Insert cConsecutive Number",
"global": true
}
},
"permissions": [
"storage",
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"https:\/\/app.asana.com\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"host_permissions": [
"*:\/\/*\/*"
],
"action": {
"default_title": "Glaze NumberGenerator",
"default_popup": "generator.html",
"default_icon": {
"16": "logo.png",
"32": "logo.png",
"72": "logo.png",
"128": "logo.png",
"512": "logo.png"
}
},
"icons": {
"16": "logo.png",
"32": "logo.png",
"72": "logo.png",
"128": "logo.png",
"512": "logo.png"
}
} | |