Linkognito
Open links in incognito mode
什麼是Linkognito?
Linkognito是由Gandi.net開發的Chrome擴展程式,該擴展的主要功能是“Open links in incognito mode”。
擴展截圖
下載Linkognito擴展crx文件
下載Linkognito擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Open all links that have a "linkognito" html class element in incognito mode (private browsing window). 擴展基本資訊
| 名稱 | |
| ID | ocdngomloomamlekjhlpdkgimgjhnjfm |
| 官方網址 | https://chrome.google.com/webstore/detail/linkognito/ocdngomloomamlekjhlpdkgimgjhnjfm |
| 簡介 | Open links in incognito mode |
| 檔案大小 | 18.94 KB |
| 安裝次數 | 55 |
| 目前版本 | 1.4 |
| 更新時間 | 2017-05-11 |
| 上架時間 | 2017-05-11 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | Gandi.net |
| 付費類型 | free |
| 擴展官網 | https://github.com/Gandi/linkognito |
| 說明頁面URL | https://github.com/Gandi/linkognito/issues |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Linkognito",
"version": "1.4",
"description": "Open links in incognito mode",
"icons": {
"48": "img\/icon.png",
"96": "img\/[email protected]",
"128": "img\/icon-128px.png"
},
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"background": {
"scripts": [
"src\/background\/index.js"
]
},
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"file:\/\/*\/*"
],
"js": [
"src\/linkognito.js"
],
"run_at": "document_end",
"all_frames": true
}
]
} | |