Manage chrome addons
Author: h | 2025-04-24
chrome-extension extension firefox-addon google-tag-manager gtm webextension browser-extension web-extension chrome-webextension chrome-addon edge-addon gtm-extension
EditThisCookie Addon - For managing Cookies in Chrome Browser
From extension stores Scratch Addons is available in these stores.StoreInstallSupported browsersSystem requirementsChrome Web StoreGoogle Chrome 96+Microsoft Edge 96+Opera 82+Brave 1.33+Vivaldi 5.0+Chromium 96+Windows 7+OS X / MacOS 10.11+Add-ons for FirefoxMozilla Firefox 109+Windows 7+OS X / MacOS 10.12+Microsoft Edge Add-onsMicrosoft Edge 96+Windows 7+OS X / MacOS 10.11+From source Unlike the store releases, installing from source requires a browser based on Chromium 121+ or Firefox 121+.About GitHub releases The releases page contains the code and installation files for all development builds of Scratch Addons, as well as the mirror of the store builds.Cloning the repository This is the recommended way to install Scratch Addons for development purposes, assuming you have Git installed.If you plan on contributing, fork the repository on GitHub first and then clone the fork, replacing with your Github username.$ git clone update Scratch Addons, first cd into its folder, and then run the following commands.Remember to also update Scratch Addons from the browser.Downloading the Zip This method is not recommended for development unless Git cannot be installed on the system since it will need to be manually repeated every time you update Scratch Addons.If you do not have Git installed, use this method instead.Go to the repository and find the download code button.Click it and select “Download ZIP”.Extract the archive into a folder.Installing on Google Chrome or Microsoft Edge To load the extension into Google Chrome and most Chromium-based browsers such as Microsoft Edge, Opera, Brave or Vivaldi:Go to chrome://extensionsTurn on “Developer mode” in the top-right cornerClick “Load unpacked” and
Addon Manager : Addon Manager Download : Elder Scrolls Online AddOns
ОбзорView source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.View the source code of any Chrome extension in the Chrome Web store without installing it.Features:- Button at the Chrome Web store - Download extension as zip file - View source - Configurable via context menu on button: Set one-click action via "primary action on click".- View source: - File name/type filter - Search in the file content (literal or regexp) - Automatic beautification (formatting) of code - Syntax highlighting - Show hashes (md5, sha1, sha256, sha384, sha512) of individual files - Image preview - View embedded zip files - View any zip file by URL or file chooser - View source of platform-specific extensions (such as Chrome OS-only extensions, or NaCl for a different architecture). - Permalink to file and search result within a zip or extension file.- Full support for incognito mode.- Outputs public key and extension ID to the console.Optional features (see options page):- View source of Opera 15+ extensions, Edge extensions, Firefox addons or Thunderbird add-ons.- "View extension source" contextmenu item on links to Chrome extensions- View source of Chrome extensions outside the webstore. The View source button becomes visible when you select a CRX file for download.Source code: demo: rob@robwu.nlChange log:- 1.2.3: Add "downloads" permission to make sure that the "Download" button always works as intended.- 1.2.4: Add extra parameters to the CRX URL to make sure that CRX files of extensions uploaded to the Chrome Web Store after July 2014 are correctly read.- 1.2.6: Sync options, use optionsV2, show numeric progress instead of dots, updated JSBeautifier, restore font size.- 1.2.7: Bugfixes (viewer height, checkbox filter).- 1.3: Support Firefox addons (also available as a Firefox addon!) Search within files Customize webstore download parameters View embedded zip files and any zip file- 1.3.1: Use correct URL for loading extension files.- 1.3.2: Bugfix to allow unusual extension URLs to be opened again.- 1.4: New syntax highlighter, improved search controls, improved word wrap.- 1.5: Calculate hashes, add link to Github project page, bugfix for case-sensitive search.- 1.6: Improved search highlightingbrowser addons - chrome extension manager - Super User
Userscripts are JavaScript files that are executed every time the user loads a Scratch page. They can modify the document’s HTML, add new buttons, customize Scratch editor behavior, and so much more.Similarly to userscripts that you might download for userscript managers like Tampermonkey or Greasemonkey, Scratch Addons userscripts consist of pieces of JavaScript that are executed in the same execution context as the JavaScript code from Scratch itself. In browser extension vocabulary, this execution context is often called the “main world”.Even though Scratch Addons userscripts are part of a browser extension, they cannot access any chrome.* or browser.* APIs. Instead, Scratch Addons offers an addon.* API.Declaring userscripts in the addon manifest Some changes require an extension reload from chrome://extensions to take effect, such as updating the addon manifest file.It’s not necessary to reload the extension when changing the source of an already existing userscript JavaScript file. In those cases, reloading the page is enough.Userscripts are declared inside a “userscripts” array.Each item of the array must have the following properties:"url": the relative URL to a JavaScript file."matches": the list of Scratch pages where the userscript will run. See matches for more information.Example manifest:{ "name": "Copy link to comment button", "description": "Adds a "Copy Link" button to all comments on the website, next to the "Report" button.", "userscripts": [ { "url": "userscript.js", "matches": ["projects", " "profiles", "studios"] } ], "tags": ["community"], "enabledByDefault": false}Creating your first userscript Unlike extension content scripts and Tampermonkey userscripts, you must wrap all of your code inside a module default export:// Example userscriptexport default async function ({ addon, console }) { console.log("Hello, " + await addon.auth.fetchUsername()); console.log("How are you today?");}Remember that JavaScript allows functions to be declared inside other functions, for example:export default async function ({ addon, console }) { async function sayHelloToUser() { console.log("Hello, " + await. chrome-extension extension firefox-addon google-tag-manager gtm webextension browser-extension web-extension chrome-webextension chrome-addon edge-addon gtm-extensionGitHub - rNeomy/addon-manager: Manage browser addons on
Scratch AddonsAboutScratch Addons combines new and existing features and themes for the Scratch website and project editor into one easy-to-access and configurable browser extension. The mission is to provide a centralized, up-to-date platform for community development of new features and themes for Scratch.About addonsAn addon mainly consists of one or more userscripts (written in JavaScript) or userstyles (written in CSS) that run on the Scratch website or project editor.Each addon declares its own addon manifest (addon.json file). This file specifies under which circumstances each one of its userscripts and userstyles should be injected into the page. It also contains user-facing information, such as the description of the feature, and information about the addon's settings.Userscripts work similarly to extension content scripts running in the "main world" (the unprivileged context where chrome.* extension APIs are not available). Userscripts have access to addon.* APIs. They can use these built-in utilities for various purposes: waiting until a certain element exists on the page, listening to settings change events, getting a reference to the Scratch VM object, etc.Addons are designed to be compatible with each other. They are also developed with performance, internationalization, accessibility, and privacy in mind.Read the documentation for more information about addons.About the extensionThe Scratch Addons browser extension provides a settings page where users can enable, disable and configure addons. The extension interprets addon manifests, stores the user's settings, and provides APIs to userscripts. A new version of the extension is released to the stores regularly with new addons and features.Addons beyond the Scratch Addons browser extensionOther open-source projects (such as Scratch forks) can also make use of the addons. For example, the TurboWarp and Adacraft project editors allow you to use most of the editor addons without installing browser extensions, and even while offline (TurboWarp Desktop).File structureAddonsaddons-l10n: Translation for addon strings (one file per addon).addon-api: Implementation of the addon.* JavaScript APIs.addons: Each addon has its own directory, which must include an addon manifest file named addon.json.libraries: Third-party libraries and other utilities, some of which are used by addons.Others.github: GitHub templates, workflows, and contributing files._locales: Translation strings for the browser extension (excluding addons).background: Background scripts for the extension.content-scripts: Content scripts, which among other things, execute userscripts and inject userstyles to the page.images: Logos, screenshots and icons (excluding addon-specific images).popups: Addon pages that are only accessible through the extension popup (for example, Scratch Messaging).webpages: The settings page, extension popup, and other pages.InstallationNo building is required. The best way to download the source is with Git:git clone browser support information and other installation methods, check the documentation.Loading the extension (Chrome)To load the extension into most Chromium-based browsers, go to chrome://extensions, turn on developer mode, click "Load unpacked", and select the ScratchAddons folder.Loading the extension (Firefox)Go to about:debugging, select "This Firefox", click "Load Temporary Add-on...", and select the manifest.json file in the ScratchAddons folder.NoteFirefox extensions loaded this way are removed when the browser is closed.ContributingSuggestions and bug reportsIf you found a bug or have a suggestion create an issue after checking for duplicates. Alternatively, youWoW Addon Manager : WoW Addon Manager Download
Chromium issue or conflict; the icon doesn't appear in the browser bar in Chrome, either. Shows properly in Edge, though. Reason for Karma (Optional) Successfully updated karma reason! Works with Google Chrome on my PC. Never use Edge. Might be something else, another addon conflict maybe? Try to disable all the other browser addons and see if the issue is still there. Reason for Karma (Optional) Successfully updated karma reason! Thanks, JanOscar.Previously unknown and never done by me, I had to manually pin the icon to the browser bar using the browser bar 'Extensions' icon dialog. Just stumbled across it clickstorming the problem. That pinning option is not there if you manage extensions from the Settings menu. Yeesh.The only other extensions I use are Tabs to Front and Scroll to Top. Disabling both made no difference in the other behaviors. Reason for Karma (Optional) Successfully updated karma reason! Welcome Guest! Please take the time to register with us. There are many great features available to you once you register, including: Richer content, access to many features that are disabled for guests like commenting and posting on the forums. Access to a great community, with a massive database of many, many areas of interest. Access to contests & subscription offers like exclusive emails. It's simple, and FREE! Sign in or Create AccountMizukiBelhi/Addon-Manager: ToS Addon Manager - GitHub
Being a pro-blogger everyday I have to deal with many blogging tasks which include managing server, managing dashboard, SEO audit and many more. For various tasks, I need to access FTP on my server and most of the time, I use desktop FTP client like FileZilla. Though at times, I wish to have an inbuilt FTP client as powerful as FileZilla in my browser and here I found one for Firefox.Mozilla is one stop browser resource for me and with extension I use Mozilla for more then browsing. Specially with Easy comment addon, Mozilla makes my Commenting super easy.To manage my files on the server FTP client I use is FileZilla but I always missed the better FTP management in Firefox. The extension I’m talking about here is FireFTP which is as fast and almost same interface as Filezilla. Like FileZilla, FireFTP also offers dual panel which makes uploading or download file easier. If you have used FileZilla in the past, you won’t find any problem understand how FireFTP works.Few features of FireFTP:Dual PanelSFTP/SSL supported (More security)Drag & DropFile hashingAutomatic re-supportMultiple FTP modelink: FireFTP for MozillaI also tried an addon for Chrome but seems like there is no good and effective FTP addon for Chrome. I will update this article when ever I find something appropriate for Chrome. Meanwhile you might like to check out :10 useful Firefox addons for Bloggers. Was this helpful? Thanks for your feedback! A Blogger, Author and a speaker!Harsh Agrawal is recognized as a leader in digital marketing and FinTech space. Fountainhead of ShoutMeLoud, and a Speaker at ASW, Hero Mindmine, Inorbit, IBM, India blockchain summit. Also, an award-winning blogger. Post navigation. chrome-extension extension firefox-addon google-tag-manager gtm webextension browser-extension web-extension chrome-webextension chrome-addon edge-addon gtm-extensionComments
From extension stores Scratch Addons is available in these stores.StoreInstallSupported browsersSystem requirementsChrome Web StoreGoogle Chrome 96+Microsoft Edge 96+Opera 82+Brave 1.33+Vivaldi 5.0+Chromium 96+Windows 7+OS X / MacOS 10.11+Add-ons for FirefoxMozilla Firefox 109+Windows 7+OS X / MacOS 10.12+Microsoft Edge Add-onsMicrosoft Edge 96+Windows 7+OS X / MacOS 10.11+From source Unlike the store releases, installing from source requires a browser based on Chromium 121+ or Firefox 121+.About GitHub releases The releases page contains the code and installation files for all development builds of Scratch Addons, as well as the mirror of the store builds.Cloning the repository This is the recommended way to install Scratch Addons for development purposes, assuming you have Git installed.If you plan on contributing, fork the repository on GitHub first and then clone the fork, replacing with your Github username.$ git clone update Scratch Addons, first cd into its folder, and then run the following commands.Remember to also update Scratch Addons from the browser.Downloading the Zip This method is not recommended for development unless Git cannot be installed on the system since it will need to be manually repeated every time you update Scratch Addons.If you do not have Git installed, use this method instead.Go to the repository and find the download code button.Click it and select “Download ZIP”.Extract the archive into a folder.Installing on Google Chrome or Microsoft Edge To load the extension into Google Chrome and most Chromium-based browsers such as Microsoft Edge, Opera, Brave or Vivaldi:Go to chrome://extensionsTurn on “Developer mode” in the top-right cornerClick “Load unpacked” and
2025-03-29ОбзорView source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.View the source code of any Chrome extension in the Chrome Web store without installing it.Features:- Button at the Chrome Web store - Download extension as zip file - View source - Configurable via context menu on button: Set one-click action via "primary action on click".- View source: - File name/type filter - Search in the file content (literal or regexp) - Automatic beautification (formatting) of code - Syntax highlighting - Show hashes (md5, sha1, sha256, sha384, sha512) of individual files - Image preview - View embedded zip files - View any zip file by URL or file chooser - View source of platform-specific extensions (such as Chrome OS-only extensions, or NaCl for a different architecture). - Permalink to file and search result within a zip or extension file.- Full support for incognito mode.- Outputs public key and extension ID to the console.Optional features (see options page):- View source of Opera 15+ extensions, Edge extensions, Firefox addons or Thunderbird add-ons.- "View extension source" contextmenu item on links to Chrome extensions- View source of Chrome extensions outside the webstore. The View source button becomes visible when you select a CRX file for download.Source code: demo: rob@robwu.nlChange log:- 1.2.3: Add "downloads" permission to make sure that the "Download" button always works as intended.- 1.2.4: Add extra parameters to the CRX URL to make sure that CRX files of extensions uploaded to the Chrome Web Store after July 2014 are correctly read.- 1.2.6: Sync options, use optionsV2, show numeric progress instead of dots, updated JSBeautifier, restore font size.- 1.2.7: Bugfixes (viewer height, checkbox filter).- 1.3: Support Firefox addons (also available as a Firefox addon!) Search within files Customize webstore download parameters View embedded zip files and any zip file- 1.3.1: Use correct URL for loading extension files.- 1.3.2: Bugfix to allow unusual extension URLs to be opened again.- 1.4: New syntax highlighter, improved search controls, improved word wrap.- 1.5: Calculate hashes, add link to Github project page, bugfix for case-sensitive search.- 1.6: Improved search highlighting
2025-03-25Scratch AddonsAboutScratch Addons combines new and existing features and themes for the Scratch website and project editor into one easy-to-access and configurable browser extension. The mission is to provide a centralized, up-to-date platform for community development of new features and themes for Scratch.About addonsAn addon mainly consists of one or more userscripts (written in JavaScript) or userstyles (written in CSS) that run on the Scratch website or project editor.Each addon declares its own addon manifest (addon.json file). This file specifies under which circumstances each one of its userscripts and userstyles should be injected into the page. It also contains user-facing information, such as the description of the feature, and information about the addon's settings.Userscripts work similarly to extension content scripts running in the "main world" (the unprivileged context where chrome.* extension APIs are not available). Userscripts have access to addon.* APIs. They can use these built-in utilities for various purposes: waiting until a certain element exists on the page, listening to settings change events, getting a reference to the Scratch VM object, etc.Addons are designed to be compatible with each other. They are also developed with performance, internationalization, accessibility, and privacy in mind.Read the documentation for more information about addons.About the extensionThe Scratch Addons browser extension provides a settings page where users can enable, disable and configure addons. The extension interprets addon manifests, stores the user's settings, and provides APIs to userscripts. A new version of the extension is released to the stores regularly with new addons and features.Addons beyond the Scratch Addons browser extensionOther open-source projects (such as Scratch forks) can also make use of the addons. For example, the TurboWarp and Adacraft project editors allow you to use most of the editor addons without installing browser extensions, and even while offline (TurboWarp Desktop).File structureAddonsaddons-l10n: Translation for addon strings (one file per addon).addon-api: Implementation of the addon.* JavaScript APIs.addons: Each addon has its own directory, which must include an addon manifest file named addon.json.libraries: Third-party libraries and other utilities, some of which are used by addons.Others.github: GitHub templates, workflows, and contributing files._locales: Translation strings for the browser extension (excluding addons).background: Background scripts for the extension.content-scripts: Content scripts, which among other things, execute userscripts and inject userstyles to the page.images: Logos, screenshots and icons (excluding addon-specific images).popups: Addon pages that are only accessible through the extension popup (for example, Scratch Messaging).webpages: The settings page, extension popup, and other pages.InstallationNo building is required. The best way to download the source is with Git:git clone browser support information and other installation methods, check the documentation.Loading the extension (Chrome)To load the extension into most Chromium-based browsers, go to chrome://extensions, turn on developer mode, click "Load unpacked", and select the ScratchAddons folder.Loading the extension (Firefox)Go to about:debugging, select "This Firefox", click "Load Temporary Add-on...", and select the manifest.json file in the ScratchAddons folder.NoteFirefox extensions loaded this way are removed when the browser is closed.ContributingSuggestions and bug reportsIf you found a bug or have a suggestion create an issue after checking for duplicates. Alternatively, you
2025-04-18Chromium issue or conflict; the icon doesn't appear in the browser bar in Chrome, either. Shows properly in Edge, though. Reason for Karma (Optional) Successfully updated karma reason! Works with Google Chrome on my PC. Never use Edge. Might be something else, another addon conflict maybe? Try to disable all the other browser addons and see if the issue is still there. Reason for Karma (Optional) Successfully updated karma reason! Thanks, JanOscar.Previously unknown and never done by me, I had to manually pin the icon to the browser bar using the browser bar 'Extensions' icon dialog. Just stumbled across it clickstorming the problem. That pinning option is not there if you manage extensions from the Settings menu. Yeesh.The only other extensions I use are Tabs to Front and Scroll to Top. Disabling both made no difference in the other behaviors. Reason for Karma (Optional) Successfully updated karma reason! Welcome Guest! Please take the time to register with us. There are many great features available to you once you register, including: Richer content, access to many features that are disabled for guests like commenting and posting on the forums. Access to a great community, with a massive database of many, many areas of interest. Access to contests & subscription offers like exclusive emails. It's simple, and FREE! Sign in or Create Account
2025-03-31OverviewView source code of Chrome extensions, Firefox addons or Opera extensions (crx/nex/xpi) from the Chrome web store and elsewhere.View the source code of any Chrome extension in the Chrome Web store without installing it.Features:- Button at the Chrome Web store - Download extension as zip file - View source - Configurable via context menu on button: Set one-click action via "primary action on click".- View source: - File name/type filter - Search in the file content (literal or regexp) - Automatic beautification (formatting) of code - Syntax highlighting - Show hashes (md5, sha1, sha256, sha384, sha512) of individual files - Image preview - View embedded zip files - View any zip file by URL or file chooser - View source of platform-specific extensions (such as Chrome OS-only extensions, or NaCl for a different architecture). - Permalink to file and search result within a zip or extension file.- Full support for incognito mode.- Outputs public key and extension ID to the console.Optional features (see options page):- View source of Opera 15+ extensions, Edge extensions, Firefox addons or Thunderbird add-ons.- "View extension source" contextmenu item on links to Chrome extensions- View source of Chrome extensions outside the webstore. The View source button becomes visible when you select a CRX file for download.Source code: demo: rob@robwu.nlChange log:- 1.2.3: Add "downloads" permission to make sure that the "Download" button always works as intended.- 1.2.4: Add extra parameters to the CRX URL to make sure that CRX files of extensions uploaded to the Chrome Web Store after July 2014 are correctly read.- 1.2.6: Sync options, use optionsV2, show numeric progress instead of dots, updated JSBeautifier, restore font size.- 1.2.7: Bugfixes (viewer height, checkbox filter).- 1.3: Support Firefox addons (also available as a Firefox addon!) Search within files Customize webstore download parameters View embedded zip files and any zip file- 1.3.1: Use correct URL for loading extension files.- 1.3.2: Bugfix to allow unusual extension URLs to be opened again.- 1.4: New syntax highlighter, improved search controls, improved word wrap.- 1.5: Calculate hashes, add link to Github project page, bugfix for case-sensitive search.- 1.6: Improved search highlighting & also search in beautified content.- 1.6.2: Configurable "primary action on click", open new tab next to current tab.- 1.6.4: Support the new CRX3 Chrome extension file format (#62).- 1.6.6: Permalink support, Firefox add-on finder.- 1.6.7: Fix broken extension due to bug with storage access and NativeCrxBindings.- 1.6.8: Support CRX3 file format from CWS; support some other AMO domains.- 1.6.9: Add option to add the context menu item to more links (#69), open new tabs via context menu next to current tab.- 1.6.10: Improve syntax highlighting (perf, highlighting of WebAssembly source), show sum of file sizes.- 1.6.11: Add "Extension ID"
2025-04-03Linux Tamriel Trade Center Support AddOn development! If you like this AddOn why not consider supporting the author? The author APH0N1C has set up a donation account. Donations help ensure that authors can continue to develop useful tools for everyone. Need help installing AddOns? We suggest Minion to automatically install and manage your AddOns! Minion makes it extremely easy to install and manage your AddOns. If you would like to manually install AddOns please visit our Install FAQ for more information and ask any questions you have on our forum. Whats hot? Inventory Insight15,065 monthlyBeamMeUp - Teleporter (Fast Travel)14,889 monthlyJack of all Trades - Automatic CP R...8,937 monthlyBugCatcher Updated8,669 monthlyDisplay Leads - with Location Info5,043 monthlyEvent Tracker4,660 monthly Latest CAddonDiagnosisby: CalamathQuick Fashionby: LariSlasherby: ShadowfenRiding Schoolby: ShadowfenBugCatcher Updatedby: ShadowfenRidinDirtyby: sinnereso Most downloaded Inventory Insight2,411,666 totalBeamMeUp - Teleporter (Fast Travel)2,401,653 totalDisplay Leads - with Location Info1,386,654 totalAI Research Grid1,178,014 totalAddon Selector (Save AddOn profiles...673,014 totalVotan's Keybinder531,093 total
2025-04-03