├── README.md ├── changelog-ru.md ├── changelog.md ├── chrome.manifest ├── chrome ├── content │ ├── headers.html │ ├── headers.js │ ├── linkPropsPlus.js │ ├── linkPropsPlus.xul │ ├── options.js │ ├── options.xul │ ├── overlayDownload.xul │ ├── overlayMainWindow.js │ ├── overlayMainWindow.xul │ ├── overlayMainWindowCmd.js │ ├── overlayMainWindowDND.js │ ├── overlayMetaData.xul │ ├── overlayPageInfo.js │ ├── overlayPageInfo.xul │ ├── ownWindow.js │ ├── prefUtils.js │ ├── properties.xul │ └── utils.js ├── locale │ ├── en-US │ │ ├── linkPropsPlus.dtd │ │ ├── linkPropsPlus.properties │ │ └── mainWindow.dtd │ ├── fr │ │ ├── linkPropsPlus.dtd │ │ ├── linkPropsPlus.properties │ │ └── mainWindow.dtd │ ├── ru │ │ ├── linkPropsPlus.dtd │ │ ├── linkPropsPlus.properties │ │ └── mainWindow.dtd │ └── zh-CN │ │ ├── linkPropsPlus.dtd │ │ ├── linkPropsPlus.properties │ │ └── mainWindow.dtd └── skin │ ├── headers.css │ ├── icons16.png │ ├── linkPropsPlus.css │ ├── overlayMainWindow.css │ └── prefs32.png ├── defaults └── preferences │ └── prefs.js ├── icon.png ├── images ├── icons16.xcf └── prefs32.xcf ├── install.rdf ├── license.txt ├── make.bat ├── make.sh └── screenshots ├── README.md ├── context_menu_get_properties.png ├── context_menu_link.png ├── context_menu_row.png ├── context_menu_text_link.png ├── download_dialog.png ├── link_properties.png ├── options_general.png ├── options_integration.png ├── options_misc.png ├── page_info.png ├── request_headers_diff.png └── tooltip_with_all_redirects.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/README.md -------------------------------------------------------------------------------- /changelog-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/changelog-ru.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/changelog.md -------------------------------------------------------------------------------- /chrome.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome.manifest -------------------------------------------------------------------------------- /chrome/content/headers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/headers.html -------------------------------------------------------------------------------- /chrome/content/headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/headers.js -------------------------------------------------------------------------------- /chrome/content/linkPropsPlus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/linkPropsPlus.js -------------------------------------------------------------------------------- /chrome/content/linkPropsPlus.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/linkPropsPlus.xul -------------------------------------------------------------------------------- /chrome/content/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/options.js -------------------------------------------------------------------------------- /chrome/content/options.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/options.xul -------------------------------------------------------------------------------- /chrome/content/overlayDownload.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayDownload.xul -------------------------------------------------------------------------------- /chrome/content/overlayMainWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayMainWindow.js -------------------------------------------------------------------------------- /chrome/content/overlayMainWindow.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayMainWindow.xul -------------------------------------------------------------------------------- /chrome/content/overlayMainWindowCmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayMainWindowCmd.js -------------------------------------------------------------------------------- /chrome/content/overlayMainWindowDND.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayMainWindowDND.js -------------------------------------------------------------------------------- /chrome/content/overlayMetaData.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayMetaData.xul -------------------------------------------------------------------------------- /chrome/content/overlayPageInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayPageInfo.js -------------------------------------------------------------------------------- /chrome/content/overlayPageInfo.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/overlayPageInfo.xul -------------------------------------------------------------------------------- /chrome/content/ownWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/ownWindow.js -------------------------------------------------------------------------------- /chrome/content/prefUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/prefUtils.js -------------------------------------------------------------------------------- /chrome/content/properties.xul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/properties.xul -------------------------------------------------------------------------------- /chrome/content/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/content/utils.js -------------------------------------------------------------------------------- /chrome/locale/en-US/linkPropsPlus.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/en-US/linkPropsPlus.dtd -------------------------------------------------------------------------------- /chrome/locale/en-US/linkPropsPlus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/en-US/linkPropsPlus.properties -------------------------------------------------------------------------------- /chrome/locale/en-US/mainWindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/en-US/mainWindow.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/linkPropsPlus.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/fr/linkPropsPlus.dtd -------------------------------------------------------------------------------- /chrome/locale/fr/linkPropsPlus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/fr/linkPropsPlus.properties -------------------------------------------------------------------------------- /chrome/locale/fr/mainWindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/fr/mainWindow.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/linkPropsPlus.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/ru/linkPropsPlus.dtd -------------------------------------------------------------------------------- /chrome/locale/ru/linkPropsPlus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/ru/linkPropsPlus.properties -------------------------------------------------------------------------------- /chrome/locale/ru/mainWindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/ru/mainWindow.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/linkPropsPlus.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/zh-CN/linkPropsPlus.dtd -------------------------------------------------------------------------------- /chrome/locale/zh-CN/linkPropsPlus.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/zh-CN/linkPropsPlus.properties -------------------------------------------------------------------------------- /chrome/locale/zh-CN/mainWindow.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/locale/zh-CN/mainWindow.dtd -------------------------------------------------------------------------------- /chrome/skin/headers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/skin/headers.css -------------------------------------------------------------------------------- /chrome/skin/icons16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/skin/icons16.png -------------------------------------------------------------------------------- /chrome/skin/linkPropsPlus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/skin/linkPropsPlus.css -------------------------------------------------------------------------------- /chrome/skin/overlayMainWindow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/skin/overlayMainWindow.css -------------------------------------------------------------------------------- /chrome/skin/prefs32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/chrome/skin/prefs32.png -------------------------------------------------------------------------------- /defaults/preferences/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/defaults/preferences/prefs.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/icon.png -------------------------------------------------------------------------------- /images/icons16.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/images/icons16.xcf -------------------------------------------------------------------------------- /images/prefs32.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/images/prefs32.xcf -------------------------------------------------------------------------------- /install.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/install.rdf -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/license.txt -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/make.bat -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/make.sh -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/README.md -------------------------------------------------------------------------------- /screenshots/context_menu_get_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/context_menu_get_properties.png -------------------------------------------------------------------------------- /screenshots/context_menu_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/context_menu_link.png -------------------------------------------------------------------------------- /screenshots/context_menu_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/context_menu_row.png -------------------------------------------------------------------------------- /screenshots/context_menu_text_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/context_menu_text_link.png -------------------------------------------------------------------------------- /screenshots/download_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/download_dialog.png -------------------------------------------------------------------------------- /screenshots/link_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/link_properties.png -------------------------------------------------------------------------------- /screenshots/options_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/options_general.png -------------------------------------------------------------------------------- /screenshots/options_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/options_integration.png -------------------------------------------------------------------------------- /screenshots/options_misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/options_misc.png -------------------------------------------------------------------------------- /screenshots/page_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/page_info.png -------------------------------------------------------------------------------- /screenshots/request_headers_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/request_headers_diff.png -------------------------------------------------------------------------------- /screenshots/tooltip_with_all_redirects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infocatcher/Link_Properties_Plus/HEAD/screenshots/tooltip_with_all_redirects.png --------------------------------------------------------------------------------