shortcut
shortcut to most popular sites
shortcutとは何ですか?
shortcutはeranzimanによって開発されたChromeの拡張機能で、その主な機能は「shortcut to most popular sites」です。
拡張機能のスクリーンショット
shortcut拡張機能のCRXファイルをダウンロード
shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Aren't you just tired of typing over and over again the same web site addresses: "https://www.google.co.il/", "https://www.facebook.com"/ect...
Here you have all these links in one convenient small pop-up. 拡張機能の基本情報
| 名前 | |
| ID | pneeikgjlojkbjpkennpifdhljeniopj |
| 公式URL | https://chrome.google.com/webstore/detail/shortcut/pneeikgjlojkbjpkennpifdhljeniopj |
| 説明 | shortcut to most popular sites |
| ファイルサイズ | 58.95 KB |
| インストール数 | 277 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2014-02-27 |
| 公開日 | 2014-02-27 |
| 評価 | 4.57/5 合計 7 レビュー |
| 開発者 | eranziman |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "shortcut",
"description": "shortcut to most popular sites",
"version": "1.0",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon16.png",
"default_popup": "browser_action.html"
},
"permissions": [
"tabs"
],
"commands": {
"toggle-feature": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "Send a 'toggle-feature' event to the extension"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+N",
"mac": "MacCtrl+Shift+N"
}
}
}
} | |