param appender
appends a configurable parameter to the url on url change
Что такое param appender?
param appender - это расширение Chrome, разработанное stupid cat, и его основная функция - "appends a configurable parameter to the url on url change".
Снимки экрана расширения
Скачать файл CRX расширения param appender
Скачайте файлы расширений param appender в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
appends a configurable parameter to the url on url change. the affected urls can be specified using a regex configuration.
Основная информация о расширении
Название | param appender |
ID | dpodflepnifmnifholnajjffjmkolaae |
Официальный URL | https://chromewebstore.google.com/detail/param-appender/dpodflepnifmnifholnajjffjmkolaae |
Описание | appends a configurable parameter to the url on url change |
Размер файла | 44.63 KB |
Количество установок | 77 |
Текущая Версия | 1.5 |
Последнее Обновление | 2020-08-31 |
Дата публикации | 2020-03-08 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | stupid cat |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "param appender", "short_name": "pappender", "version": "1.5", "description": "appends a configurable parameter to the url on url change", "manifest_version": 2, "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "browser_action": { "default_popup": "views\/popup.html", "default_icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "options_page": "views\/options.html", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |